2052
|
1 /* Provide a replacement for the POSIX nanosleep function. |
2077
|
2 Copyright (C) 1999, 2000 Free Software Foundation, Inc. |
2052
|
3 |
|
4 This program is free software; you can redistribute it and/or modify |
|
5 it under the terms of the GNU General Public License as published by |
|
6 the Free Software Foundation; either version 2, or (at your option) |
|
7 any later version. |
|
8 |
|
9 This program is distributed in the hope that it will be useful, |
|
10 but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
12 GNU General Public License for more details. |
|
13 |
|
14 You should have received a copy of the GNU General Public License |
|
15 along with this program; if not, write to the Free Software Foundation, |
|
16 Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ |
|
17 |
|
18 /* written by Jim Meyering */ |
|
19 |
|
20 #include <config.h> |
2270
|
21 |
|
22 /* Undefine nanosleep here so any prototype is not redefined to be a |
|
23 prototype for rpl_nanosleep. (they'd conflict e.g., on alpha-dec-osf3.2) */ |
|
24 #undef nanosleep |
|
25 |
2053
|
26 #include <stdio.h> |
2052
|
27 #include <sys/types.h> |
2053
|
28 #include <signal.h> |
2052
|
29 |
2057
|
30 #include <errno.h> |
|
31 #ifndef errno |
|
32 extern int errno; |
|
33 #endif |
|
34 |
2056
|
35 #if HAVE_UNISTD_H |
|
36 # include <unistd.h> |
|
37 #endif |
|
38 |
2077
|
39 #include "nanosleep.h" |
2052
|
40 |
2056
|
41 static int suspended; |
2058
|
42 int first_call = 1; |
2052
|
43 |
2053
|
44 /* Handle SIGCONT. */ |
|
45 |
|
46 static void |
|
47 sighandler (int sig) |
|
48 { |
|
49 suspended = 1; |
|
50 } |
|
51 |
2058
|
52 /* FIXME: comment */ |
2052
|
53 |
|
54 static void |
2056
|
55 my_usleep (const struct timespec *ts_delay) |
2052
|
56 { |
|
57 struct timeval tv_delay; |
|
58 tv_delay.tv_sec = ts_delay->tv_sec; |
2058
|
59 tv_delay.tv_usec = ts_delay->tv_nsec / 1000; |
2056
|
60 select (0, (void *) 0, (void *) 0, (void *) 0, &tv_delay); |
2052
|
61 } |
|
62 |
2058
|
63 /* FIXME: comment */ |
|
64 |
2052
|
65 int |
2270
|
66 rpl_nanosleep (const struct timespec *requested_delay, |
2052
|
67 struct timespec *remaining_delay) |
|
68 { |
2151
|
69 #ifdef SA_NOCLDSTOP |
2053
|
70 struct sigaction oldact, newact; |
|
71 #endif |
|
72 |
2056
|
73 suspended = 0; |
2052
|
74 |
2058
|
75 /* set up sig handler */ |
|
76 if (first_call) |
|
77 { |
2151
|
78 #ifdef SA_NOCLDSTOP |
2058
|
79 newact.sa_handler = sighandler; |
|
80 sigemptyset (&newact.sa_mask); |
|
81 newact.sa_flags = 0; |
2053
|
82 |
2058
|
83 sigaction (SIGCONT, NULL, &oldact); |
|
84 if (oldact.sa_handler != SIG_IGN) |
|
85 sigaction (SIGCONT, &newact, NULL); |
2053
|
86 #else |
2058
|
87 if (signal (SIGCONT, SIG_IGN) != SIG_IGN) |
|
88 signal (SIGCONT, sighandler); |
2053
|
89 #endif |
2058
|
90 first_call = 0; |
|
91 } |
2052
|
92 |
2056
|
93 my_usleep (requested_delay); |
2052
|
94 |
2056
|
95 if (suspended) |
2052
|
96 { |
|
97 /* Calculate time remaining. */ |
|
98 /* FIXME: the code in sleep doesn't use this, so there's no |
|
99 rush to implement it. */ |
2058
|
100 |
|
101 errno = EINTR; |
2052
|
102 } |
|
103 |
|
104 /* FIXME: Restore sig handler? */ |
|
105 |
2056
|
106 return suspended; |
2052
|
107 } |