time_t(3type) | time_t(3type) |
time_t, suseconds_t, useconds_t - integer time
Standard C library (libc)
#include <time.h>
typedef /* ... */ time_t;
#include <sys/types.h>
typedef /* ... */ suseconds_t; typedef /* ... */ useconds_t;
<sched.h> defines time_t since POSIX.1-2008.
POSIX.1-2001 defined useconds_t in <unistd.h> too.
On some architectures, the width of time_t can be controlled with the feature test macro _TIME_BITS. See feature_test_macros(7).
The following headers also provide time_t: <sched.h>, <sys/msg.h>, <sys/select.h>, <sys/sem.h>, <sys/shm.h>, <sys/stat.h>, <sys/time.h>, <sys/types.h>, and <utime.h>.
The following headers also provide suseconds_t: <sys/select.h> and <sys/time.h>.
stime(2), time(2), ctime(3), difftime(3), usleep(3), timeval(3type)
2023-11-11 | Linux man-pages 6.7 |