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
394
N/A
set prototyped
394
N/A
lib nanosleep,usleep,_strftime
394
N/A
typ clock_t = uint32_t
394
N/A
typ time_t = uint32_t
394
N/A
394
N/A
if sys time {
394
N/A
#include <
sys/time.h
>
394
N/A
}
394
N/A
endif
394
N/A
394
N/A
if ! mem
tm.tm_sec
sys/time.h
394
N/A
if hdr time {
394
N/A
#include <
time.h
>
394
N/A
}
394
N/A
endif
394
N/A
endif
394
N/A
394
N/A
if sys times {
394
N/A
#include <
sys/times.h
>
394
N/A
}
1938
N/A
else {
394
N/A
struct tms
394
N/A
{
394
N/A
clock_t tms_utime;
394
N/A
clock_t tms_stime;
394
N/A
clock_t tms_cutime;
394
N/A
clock_t tms_cstime;
394
N/A
};
618
N/A
extern clock_t times(struct tms*);
394
N/A
}
394
N/A
endif
844
N/A
844
N/A
if ! mem
timeval.tv_sec
sys/time.h
{
618
N/A
struct timeval
1258
N/A
{
394
N/A
time_t tv_sec;
394
N/A
time_t tv_usec;
394
N/A
};
394
N/A
}
394
N/A
endif
394
N/A
394
N/A
cat{
394
N/A
#ifndef CLOCKS_PER_SEC
394
N/A
#define CLOCKS_PER_SEC CLK_TCK
727
N/A
#endif
727
N/A
}end
727
N/A