diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2021-01-22 11:45:38 -0800 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2021-01-22 12:02:55 -0800 |
commit | a900e641fa1fd765799f12a7f699f768ebfccfe8 (patch) | |
tree | a874eba952d3e51190a2bfe26cfe6c1635e9fda1 /lib/time.in.h | |
parent | 9143eba0c6861f467c18bc52d66e6f5c573be56b (diff) | |
download | emacs-a900e641fa1fd765799f12a7f699f768ebfccfe8.tar.gz emacs-a900e641fa1fd765799f12a7f699f768ebfccfe8.tar.bz2 emacs-a900e641fa1fd765799f12a7f699f768ebfccfe8.zip |
Update from Gnulib by running admin/merge-gnulib
Diffstat (limited to 'lib/time.in.h')
-rw-r--r-- | lib/time.in.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/lib/time.in.h b/lib/time.in.h index 958dc0bd292..1385980cdf5 100644 --- a/lib/time.in.h +++ b/lib/time.in.h @@ -101,6 +101,25 @@ struct __time_t_must_be_integral { # define GNULIB_defined_struct_time_t_must_be_integral 1 # endif +/* Define TIME_UTC, a positive integer constant used for timespec_get(). */ +# if ! @TIME_H_DEFINES_TIME_UTC@ +# if !GNULIB_defined_TIME_UTC +# define TIME_UTC 1 +# define GNULIB_defined_TIME_UTC 1 +# endif +# endif + +/* Set *TS to the current time, and return BASE. + Upon failure, return 0. */ +# if @GNULIB_TIMESPEC_GET@ +# if ! @HAVE_TIMESPEC_GET@ +_GL_FUNCDECL_SYS (timespec_get, int, (struct timespec *ts, int base) + _GL_ARG_NONNULL ((1))); +# endif +_GL_CXXALIAS_SYS (timespec_get, int, (struct timespec *ts, int base)); +_GL_CXXALIASWARN (timespec_get); +# endif + /* Sleep for at least RQTP seconds unless interrupted, If interrupted, return -1 and store the remaining time into RMTP. See <https://pubs.opengroup.org/onlinepubs/9699919799/functions/nanosleep.html>. */ |