annotate lib/sleep.c @ 10001:facc928673d7

Declare rpmatch.
author Bruno Haible <bruno@clisp.org>
date Tue, 29 Apr 2008 02:55:59 +0200
parents bbbbbf4cd1c5
children 25e64e77bb53
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
8786
b7c6961fb530 New module 'sleep'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1 /* Pausing execution of the current thread.
b7c6961fb530 New module 'sleep'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2 Copyright (C) 2007 Free Software Foundation, Inc.
b7c6961fb530 New module 'sleep'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
3 Written by Bruno Haible <bruno@clisp.org>, 2007.
b7c6961fb530 New module 'sleep'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
4
9309
bbbbbf4cd1c5 Change copyright notice from GPLv2+ to GPLv3+.
Bruno Haible <bruno@clisp.org>
parents: 8786
diff changeset
5 This program is free software: you can redistribute it and/or modify
8786
b7c6961fb530 New module 'sleep'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6 it under the terms of the GNU General Public License as published by
9309
bbbbbf4cd1c5 Change copyright notice from GPLv2+ to GPLv3+.
Bruno Haible <bruno@clisp.org>
parents: 8786
diff changeset
7 the Free Software Foundation; either version 3 of the License, or
bbbbbf4cd1c5 Change copyright notice from GPLv2+ to GPLv3+.
Bruno Haible <bruno@clisp.org>
parents: 8786
diff changeset
8 (at your option) any later version.
8786
b7c6961fb530 New module 'sleep'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
9
b7c6961fb530 New module 'sleep'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
10 This program is distributed in the hope that it will be useful,
b7c6961fb530 New module 'sleep'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
b7c6961fb530 New module 'sleep'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
b7c6961fb530 New module 'sleep'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
13 GNU General Public License for more details.
b7c6961fb530 New module 'sleep'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
14
b7c6961fb530 New module 'sleep'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
15 You should have received a copy of the GNU General Public License
9309
bbbbbf4cd1c5 Change copyright notice from GPLv2+ to GPLv3+.
Bruno Haible <bruno@clisp.org>
parents: 8786
diff changeset
16 along with this program. If not, see <http://www.gnu.org/licenses/>. */
8786
b7c6961fb530 New module 'sleep'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
17
b7c6961fb530 New module 'sleep'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
18 #include <config.h>
b7c6961fb530 New module 'sleep'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
19
b7c6961fb530 New module 'sleep'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
20 /* Specification. */
b7c6961fb530 New module 'sleep'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
21 #include <unistd.h>
b7c6961fb530 New module 'sleep'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
22
b7c6961fb530 New module 'sleep'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
23 #if (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__
b7c6961fb530 New module 'sleep'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
24
b7c6961fb530 New module 'sleep'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
25 # define WIN32_LEAN_AND_MEAN /* avoid including junk */
b7c6961fb530 New module 'sleep'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
26 # include <windows.h>
b7c6961fb530 New module 'sleep'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
27
b7c6961fb530 New module 'sleep'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
28 unsigned int
b7c6961fb530 New module 'sleep'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
29 sleep (unsigned int seconds)
b7c6961fb530 New module 'sleep'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
30 {
b7c6961fb530 New module 'sleep'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
31 unsigned int remaining;
b7c6961fb530 New module 'sleep'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
32
b7c6961fb530 New module 'sleep'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
33 /* Sleep for 1 second many times, because
b7c6961fb530 New module 'sleep'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
34 1. Sleep is not interruptiple by Ctrl-C,
b7c6961fb530 New module 'sleep'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
35 2. we want to avoid arithmetic overflow while multiplying with 1000. */
b7c6961fb530 New module 'sleep'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
36 for (remaining = seconds; remaining > 0; remaining--)
b7c6961fb530 New module 'sleep'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
37 Sleep (1000);
b7c6961fb530 New module 'sleep'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
38
b7c6961fb530 New module 'sleep'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
39 return remaining;
b7c6961fb530 New module 'sleep'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
40 }
b7c6961fb530 New module 'sleep'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
41
b7c6961fb530 New module 'sleep'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
42 #else
b7c6961fb530 New module 'sleep'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
43
b7c6961fb530 New module 'sleep'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
44 #error "Please port gnulib sleep.c to your platform, possibly using usleep() or select(), then report this to bug-gnulib."
b7c6961fb530 New module 'sleep'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
45
b7c6961fb530 New module 'sleep'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
46 #endif