1 /* High-resolution sleep with the specified clock.
2 Copyright (C) 2000, 2001, 2003 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, write to the Free
17 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
23 #include <hp-timing.h>
24 #include <sysdep-cancel.h>
27 # define CPUCLOCK_P(clock) \
28 ((clock) == CLOCK_PROCESS_CPUTIME_ID \
29 || ((clock) & ((1 << CLOCK_IDFIELD_SIZE) - 1)) == CLOCK_THREAD_CPUTIME_ID)
31 # define CPUCLOCK_P(clock) 0
34 #ifndef INVALID_CLOCK_P
35 # define INVALID_CLOCK_P(cl) \
36 ((cl) < CLOCK_REALTIME || (cl) > CLOCK_THREAD_CPUTIME_ID)
40 /* This implementation assumes that these is only a `nanosleep' system
41 call. So we have to remap all other activities. */
43 clock_nanosleep (clockid_t clock_id
, int flags
, const struct timespec
*req
,
48 if (__builtin_expect (req
->tv_nsec
, 0) < 0
49 || __builtin_expect (req
->tv_nsec
, 0) >= 1000000000)
52 if (CPUCLOCK_P (clock_id
))
55 if (INVALID_CLOCK_P (clock_id
))
58 #ifdef SYSDEP_NANOSLEEP
62 /* If we got an absolute time, remap it. */
63 if (flags
== TIMER_ABSTIME
)
68 /* Make sure we use safe data types. */
69 assert (sizeof (sec
) >= sizeof (now
.tv_sec
));
71 /* Get the current time for this clock. */
72 if (__builtin_expect (clock_gettime (clock_id
, &now
), 0) != 0)
75 /* Compute the difference. */
76 nsec
= req
->tv_nsec
- now
.tv_nsec
;
77 sec
= req
->tv_sec
- now
.tv_sec
- (nsec
< 0);
79 /* The time has already elapsed. */
83 now
.tv_nsec
= nsec
+ (nsec
< 0 ? 1000000000 : 0);
85 /* From now on this is our time. */
88 /* Make sure we are not modifying the struct pointed to by REM. */
91 else if (__builtin_expect (flags
, 0) != 0)
93 else if (clock_id
!= CLOCK_REALTIME
)
97 return __builtin_expect (nanosleep (req
, rem
), 0) ? errno
: 0;