Mercurial > hg > octave-nkf > gnulib-hg
diff lib/nanosleep.c @ 12421:e8d2c6fc33ad
Use spaces for indentation, not tabs.
author | Bruno Haible <bruno@clisp.org> |
---|---|
date | Thu, 10 Dec 2009 20:28:30 +0100 |
parents | bf3fd58aaf19 |
children | b5e42ef33b49 |
line wrap: on
line diff
--- a/lib/nanosleep.c +++ b/lib/nanosleep.c @@ -45,7 +45,7 @@ int rpl_nanosleep (const struct timespec *requested_delay, - struct timespec *remaining_delay) + struct timespec *remaining_delay) { /* nanosleep mishandles large sleeps due to internal overflow problems. The worst known case of this is cygwin 1.5.x, which @@ -115,12 +115,12 @@ { time_t t1 = tv_delay.tv_sec + 1; if (t1 < tv_delay.tv_sec) - tv_delay.tv_usec = 1000000 - 1; /* close enough */ + tv_delay.tv_usec = 1000000 - 1; /* close enough */ else - { - tv_delay.tv_sec = t1; - tv_delay.tv_usec = 0; - } + { + tv_delay.tv_sec = t1; + tv_delay.tv_usec = 0; + } } select (0, NULL, NULL, NULL, &tv_delay); } @@ -130,7 +130,7 @@ int rpl_nanosleep (const struct timespec *requested_delay, - struct timespec *remaining_delay) + struct timespec *remaining_delay) { static bool initialized; @@ -147,14 +147,14 @@ sigaction (SIGCONT, NULL, &oldact); if (get_handler (&oldact) != SIG_IGN) - { - struct sigaction newact; + { + struct sigaction newact; - newact.sa_handler = sighandler; - sigemptyset (&newact.sa_mask); - newact.sa_flags = 0; - sigaction (SIGCONT, &newact, NULL); - } + newact.sa_handler = sighandler; + sigemptyset (&newact.sa_mask); + newact.sa_flags = 0; + sigaction (SIGCONT, &newact, NULL); + } initialized = true; } @@ -166,7 +166,7 @@ { /* Calculate time remaining. */ /* FIXME: the code in sleep doesn't use this, so there's no - rush to implement it. */ + rush to implement it. */ errno = EINTR; }