X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Fsleep.c;h=4c97d7dfa5644fda353f29cee460524abf96150d;hb=fa1db0dd22768f09a507674a30beb5b8a87bb35f;hp=68d434abbc2e4d7779b4e884803c391931cca1d2;hpb=2f2b6680291d8d766e51f3c1cc5e8078f8d285f0;p=gnulib.git diff --git a/lib/sleep.c b/lib/sleep.c index 68d434abb..4c97d7dfa 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-2013 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);