|
@@ -1,24 +1,108 @@
|
|
|
+
|
|
|
+ Copyright (C) 1996, 1997, 1998, 1999 Free Software Foundation, Inc.
|
|
|
+ This file is part of the GNU C Library.
|
|
|
+ Contributed by Ulrich Drepper <drepper@cygnus.com>, 1996.
|
|
|
|
|
|
+ The GNU C Library is free software; you can redistribute it and/or
|
|
|
+ modify it under the terms of the GNU Library General Public License as
|
|
|
+ published by the Free Software Foundation; either version 2 of the
|
|
|
+ License, or (at your option) any later version.
|
|
|
|
|
|
-#include <sys/time.h>
|
|
|
-#include <sys/types.h>
|
|
|
+ The GNU C Library is distributed in the hope that it will be useful,
|
|
|
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
+ Library General Public License for more details.
|
|
|
+
|
|
|
+ You should have received a copy of the GNU Library General Public
|
|
|
+ License along with the GNU C Library; see the file COPYING.LIB. If not,
|
|
|
+ write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
+ Boston, MA 02111-1307, USA. */
|
|
|
+
|
|
|
+#include <errno.h>
|
|
|
+#include <time.h>
|
|
|
+#include <signal.h>
|
|
|
#include <unistd.h>
|
|
|
|
|
|
-int usleep (__useconds_t usec)
|
|
|
+#if 0
|
|
|
+
|
|
|
+ * the stupid SysV SIGCHLD vs. SIG_IGN behaviour. It is
|
|
|
+ * fine unless you are messing with SIGCHLD... */
|
|
|
+unsigned int sleep (unsigned int sec)
|
|
|
{
|
|
|
- struct timeval tv;
|
|
|
-
|
|
|
- tv.tv_sec = usec / 1000000;
|
|
|
- tv.tv_usec = usec % 1000000;
|
|
|
- return(select(0, 0, 0, 0, &tv));
|
|
|
+ struct timespec ts = {
|
|
|
+ tv_sec: (long int)(sec / 1000000),
|
|
|
+ tv_nsec: 0
|
|
|
+ };
|
|
|
+ nanosleep(&ts, &ts);
|
|
|
+ return(sec-ts.tv_sec);
|
|
|
}
|
|
|
|
|
|
-unsigned int sleep(unsigned int sec)
|
|
|
+#else
|
|
|
+
|
|
|
+
|
|
|
+ kernel does not implement the sstupid SysV SIGCHLD vs. SIG_IGN
|
|
|
+ behaviour for this syscall. Therefore we have to emulate it here. */
|
|
|
+unsigned int sleep (unsigned int seconds)
|
|
|
{
|
|
|
- struct timeval tv;
|
|
|
+ struct timespec ts = { tv_sec: (long int) seconds, tv_nsec: 0 };
|
|
|
+ sigset_t set, oset;
|
|
|
+ unsigned int result;
|
|
|
+
|
|
|
+
|
|
|
+ if (seconds == 0)
|
|
|
+ return 0;
|
|
|
+
|
|
|
+
|
|
|
+ arrives even if SIGCHLD is ignored. We have to deal with it
|
|
|
+ in libc. We block SIGCHLD first. */
|
|
|
+ if (__sigemptyset (&set) < 0
|
|
|
+ || __sigaddset (&set, SIGCHLD) < 0
|
|
|
+ || sigprocmask (SIG_BLOCK, &set, &oset))
|
|
|
+ return -1;
|
|
|
+
|
|
|
+
|
|
|
+ if (!__sigismember (&oset, SIGCHLD))
|
|
|
+ {
|
|
|
+ int saved_errno;
|
|
|
+ struct sigaction oact;
|
|
|
+
|
|
|
+ if (__sigemptyset (&set) < 0 || __sigaddset (&set, SIGCHLD) < 0)
|
|
|
+ return -1;
|
|
|
+
|
|
|
+
|
|
|
+ if (sigaction (SIGCHLD, (struct sigaction *) NULL, &oact) < 0)
|
|
|
+ {
|
|
|
+ saved_errno = errno;
|
|
|
+
|
|
|
+ (void) sigprocmask (SIG_SETMASK, &oset, (sigset_t *) NULL);
|
|
|
+ __set_errno (saved_errno);
|
|
|
+ return -1;
|
|
|
+ }
|
|
|
+
|
|
|
+ if (oact.sa_handler == SIG_IGN)
|
|
|
+ {
|
|
|
+
|
|
|
+ result = nanosleep (&ts, &ts);
|
|
|
+
|
|
|
+ saved_errno = errno;
|
|
|
+
|
|
|
+ (void) sigprocmask (SIG_SETMASK, &oset, (sigset_t *) NULL);
|
|
|
+ __set_errno (saved_errno);
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+
|
|
|
+ (void) sigprocmask (SIG_SETMASK, &oset, (sigset_t *) NULL);
|
|
|
+ result = nanosleep (&ts, &ts);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ else
|
|
|
+ result = nanosleep (&ts, &ts);
|
|
|
+
|
|
|
+ if (result != 0)
|
|
|
+
|
|
|
+ result = (unsigned int) ts.tv_sec + (ts.tv_nsec >= 500000000L);
|
|
|
|
|
|
- tv.tv_sec = sec;
|
|
|
- tv.tv_usec = 0;
|
|
|
- select(0, 0, 0, 0, &tv);
|
|
|
- return tv.tv_sec;
|
|
|
+ return result;
|
|
|
}
|
|
|
+#endif
|