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