diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2010-10-29 04:01:27 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2010-10-29 04:01:27 +0200 |
commit | 18e0f7e66e06b3b128e3d0a8837909f7f474ab69 (patch) | |
tree | aa4945f1ad5f9f765ef6f50043923f00a50f645c /libc/unistd | |
parent | fed8640bceb8fe937efaceaf2ca506b03f76f621 (diff) |
sleep: document testing result on 2.4.x kernels
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'libc/unistd')
-rw-r--r-- | libc/unistd/sleep.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/unistd/sleep.c b/libc/unistd/sleep.c index 5bd3755c4..211c8434e 100644 --- a/libc/unistd/sleep.c +++ b/libc/unistd/sleep.c @@ -45,7 +45,7 @@ int main() { nanosleep(&t, &t); return 0; } - * On 2.6.35-rc4: + * Testing on 2.4.20 and on 2.6.35-rc4: * With SIG_DFL, nanosleep() is not interrupted by SIGCHLD. Ok. * With dummy handler, nanosleep() is interrupted by SIGCHLD. Ok. * With SIG_IGN, nanosleep() is NOT interrupted by SIGCHLD. |