X-Git-Url: https://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Fsleep.c;h=9a4b9400cc195e9ae2cc1f999e8fc4d66be875e3;hb=afecf4a0bde14016fb4ab2a18395d82cfbc0fe28;hp=68d434abbc2e4d7779b4e884803c391931cca1d2;hpb=2f2b6680291d8d766e51f3c1cc5e8078f8d285f0;p=gnulib.git diff --git a/lib/sleep.c b/lib/sleep.c index 68d434abb..9a4b9400c 100644 --- a/lib/sleep.c +++ b/lib/sleep.c @@ -1,5 +1,5 @@ /* Pausing execution of the current thread. - Copyright (C) 2007, 2009-2010 Free Software Foundation, Inc. + Copyright (C) 2007, 2009-2012 Free Software Foundation, Inc. Written by Bruno Haible , 2007. This program is free software: you can redistribute it and/or modify @@ -35,7 +35,7 @@ sleep (unsigned int seconds) unsigned int remaining; /* Sleep for 1 second many times, because - 1. Sleep is not interruptiple by Ctrl-C, + 1. Sleep is not interruptible by Ctrl-C, 2. we want to avoid arithmetic overflow while multiplying with 1000. */ for (remaining = seconds; remaining > 0; remaining--) Sleep (1000);