Next: getuid
, Previous: getsubopt
, Up: ISO C and POSIX Function Substitutes [Contents][Index]
gettimeofday
Removed in POSIX.1-2024.
POSIX.1-2017 specification:
https://pubs.opengroup.org/onlinepubs/9699919799/functions/gettimeofday.html
Gnulib module: gettimeofday
Portability problems fixed by Gnulib:
struct
timezone*
rather than void *
, making it an error to redeclare
the function with the POSIX signature:
glibc.
However, rather than penalize these systems with a replacement
function, gnulib defines GETTIMEOFDAY_TIMEZONE
to the
appropriate type for use in avoiding a compiler warning if assigning
gettimeofday
to a function pointer.
Portability problems not fixed by Gnulib:
gettimeofday
is not NULL
.
gettime
or timespec_get
instead.
(POSIX recommends to use the function clock_gettime
, but there is
no corresponding Gnulib module for it yet.)