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