Cross Reference: time
xref
: /
illumos-gate
/
usr
/
src
/
lib
/
libast
/
common
/
features
/
time
Home
History
Annotate
Line#
Navigate
Download
Search
only in
./
time revision da2e3ebdc1edfbc5028edf1354e7dd2fa69a7968
325
N/A
set prototyped
325
N/A
lib nanosleep,usleep,_strftime
325
N/A
typ clock_t = uint32_t
325
N/A
typ time_t = uint32_t
325
N/A
325
N/A
if sys time {
325
N/A
#include <
sys/time.h
>
325
N/A
}
325
N/A
endif
325
N/A
325
N/A
if ! mem
tm.tm_sec
sys/time.h
325
N/A
if hdr time {
325
N/A
#include <
time.h
>
325
N/A
}
325
N/A
endif
325
N/A
endif
325
N/A
325
N/A
if sys times {
325
N/A
#include <
sys/times.h
>
325
N/A
}
325
N/A
else {
325
N/A
struct tms
325
N/A
{
325
N/A
clock_t tms_utime;
325
N/A
clock_t tms_stime;
325
N/A
clock_t tms_cutime;
325
N/A
clock_t tms_cstime;
325
N/A
};
325
N/A
extern clock_t times(struct tms*);
325
N/A
}
325
N/A
endif
325
N/A
325
N/A
if ! mem
timeval.tv_sec
sys/time.h
{
325
N/A
struct timeval
325
N/A
{
325
N/A
time_t tv_sec;
325
N/A
time_t tv_usec;
325
N/A
};
325
N/A
}
325
N/A
endif
325
N/A
325
N/A
cat{
325
N/A
#ifndef CLOCKS_PER_SEC
325
N/A
#define CLOCKS_PER_SEC CLK_TCK
325
N/A
#endif
325
N/A
}end
325
N/A