New module 'time', so that apps can include <time.h> as per
[gnulib.git] / lib / xnanosleep.c
1 /* xnanosleep.c -- a more convenient interface to nanosleep
2
3    Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007 Free Software
4    Foundation, Inc.
5
6    This program is free software; you can redistribute it and/or modify
7    it under the terms of the GNU General Public License as published by
8    the Free Software Foundation; either version 2, or (at your option)
9    any later version.
10
11    This program is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
15
16    You should have received a copy of the GNU General Public License
17    along with this program; if not, write to the Free Software Foundation,
18    Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
19
20 /* Mostly written (for sleep.c) by Paul Eggert.
21    Factored out (creating this file) by Jim Meyering.  */
22
23 #include <config.h>
24
25 #include "xnanosleep.h"
26
27 #include <limits.h>
28 #include <stdbool.h>
29 #include <stdio.h>
30 #include <assert.h>
31 #include <errno.h>
32 #include <sys/types.h>
33 #include <time.h>
34
35 #include "intprops.h"
36
37 #ifndef TIME_T_MAX
38 # define TIME_T_MAX TYPE_MAXIMUM (time_t)
39 #endif
40
41 /* Sleep until the time (call it WAKE_UP_TIME) specified as
42    SECONDS seconds after the time this function is called.
43    SECONDS must be non-negative.  If SECONDS is so large that
44    it is not representable as a `struct timespec', then use
45    the maximum value for that interval.  Return -1 on failure
46    (setting errno), 0 on success.  */
47
48 int
49 xnanosleep (double seconds)
50 {
51   enum { BILLION = 1000000000 };
52
53   bool overflow = false;
54   double ns;
55   struct timespec ts_sleep;
56
57   assert (0 <= seconds);
58
59   /* Separate whole seconds from nanoseconds.
60      Be careful to detect any overflow.  */
61   ts_sleep.tv_sec = seconds;
62   ns = BILLION * (seconds - ts_sleep.tv_sec);
63   overflow |= ! (ts_sleep.tv_sec <= seconds && 0 <= ns && ns <= BILLION);
64   ts_sleep.tv_nsec = ns;
65
66   /* Round up to the next whole number, if necessary, so that we
67      always sleep for at least the requested amount of time.  Assuming
68      the default rounding mode, we don't have to worry about the
69      rounding error when computing 'ns' above, since the error won't
70      cause 'ns' to drop below an integer boundary.  */
71   ts_sleep.tv_nsec += (ts_sleep.tv_nsec < ns);
72
73   /* Normalize the interval length.  nanosleep requires this.  */
74   if (BILLION <= ts_sleep.tv_nsec)
75     {
76       time_t t = ts_sleep.tv_sec + 1;
77
78       /* Detect integer overflow.  */
79       overflow |= (t < ts_sleep.tv_sec);
80
81       ts_sleep.tv_sec = t;
82       ts_sleep.tv_nsec -= BILLION;
83     }
84
85   for (;;)
86     {
87       if (overflow)
88         {
89           ts_sleep.tv_sec = TIME_T_MAX;
90           ts_sleep.tv_nsec = BILLION - 1;
91         }
92
93       /* Linux-2.6.8.1's nanosleep returns -1, but doesn't set errno
94          when resumed after being suspended.  Earlier versions would
95          set errno to EINTR.  nanosleep from linux-2.6.10, as well as
96          implementations by (all?) other vendors, doesn't return -1
97          in that case;  either it continues sleeping (if time remains)
98          or it returns zero (if the wake-up time has passed).  */
99       errno = 0;
100       if (nanosleep (&ts_sleep, NULL) == 0)
101         break;
102       if (errno != EINTR && errno != 0)
103         return -1;
104     }
105
106   return 0;
107 }