From 5c62002cc864b92f9c1517449e197c55adb9ff44 Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Tue, 30 Dec 2003 10:45:45 +0000 Subject: Make sleep behave itself properly inthe presence of SIGCHLD --- libc/unistd/usleep.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'libc/unistd/usleep.c') diff --git a/libc/unistd/usleep.c b/libc/unistd/usleep.c index 25979681d..55e8f3fb7 100644 --- a/libc/unistd/usleep.c +++ b/libc/unistd/usleep.c @@ -5,9 +5,9 @@ int usleep (__useconds_t usec) { - const struct timespec ts = { - tv_sec: (long int)(usec / 1000000), - tv_nsec: (long int) (usec % 1000000) * 1000ul }; - return(nanosleep(&ts, NULL)); + const struct timespec ts = { + .tv_sec = (long int) (usec / 1000000), + .tv_nsec = (long int) (usec % 1000000) * 1000ul + }; + return(nanosleep(&ts, NULL)); } - -- cgit v1.2.3