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