# HG changeset patch # User Jim Meyering # Date 946201216 0 # Node ID 0d23f740f2815ad5213a71ffee2363a1d498ff32 # Parent 3c79d37078c24f84462f7a00f66d589a95185d28 *** empty log message *** diff --git a/lib/nanosleep.c b/lib/nanosleep.c --- a/lib/nanosleep.c +++ b/lib/nanosleep.c @@ -18,8 +18,9 @@ /* written by Jim Meyering */ #include - +#include #include +#include #include /* FIXME: is including both like this kosher? */ @@ -27,6 +28,26 @@ static interrupted; +/* Handle SIGCONT. */ + +static void +sighandler (int sig) +{ +#ifdef SA_INTERRUPT + struct sigaction sigact; + + sigact.sa_handler = SIG_DFL; + sigemptyset (&sigact.sa_mask); + sigact.sa_flags = 0; + sigaction (sig, &sigact, NULL); +#else + signal (sig, SIG_DFL); +#endif + + suspended = 1; + kill (getpid (), sig); +} + /* Sleep for USEC microseconds. */ static void @@ -42,10 +63,25 @@ nanosleep (const struct timespec *requested_delay, struct timespec *remaining_delay) { +#ifdef SA_INTERRUPT + struct sigaction oldact, newact; +#endif + interrupted = 0; /* set up sig handler -- but maybe only do this the first time? */ - /* FIXME */ +#ifdef SA_INTERRUPT + newact.sa_handler = sighandler; + sigemptyset (&newact.sa_mask); + newact.sa_flags = 0; + + sigaction (SIGCONT, NULL, &oldact); + if (oldact.sa_handler != SIG_IGN) + sigaction (SIGCONT, &newact, NULL); +#else + if (signal (SIGCONT, SIG_IGN) != SIG_IGN) + signal (SIGCONT, sighandler); +#endif usleep (requested_delay);