modified: diffout.py
[GalaxyCodeBases.git] / c_cpp / etc / calc / help / sleep
blob6e80dc5bf1a59498777a52172d2ce2a0835d8ce7
1 NAME
2     sleep - suspend operation for a specified time
4 SYNOPSIS
5     sleep([n])
7 TYPES
8     n           non-negative real, defaults to 1
10     return      integer or null value
12 DESCRIPTION
13     This uses the C-library sleep (if n is integral) or usleep (for
14     non-integral n) to suspend operation for n seconds.  If n is an
15     integer and the sleep is stopped by an interruption, the number
16     of seconds remaining is returned.
18     One kind of use is to slow down output to permit easier reading of
19     results, as in:
21         ; for (i = 0; i < 100; i++) {
22         ;;      print sqrt(i);
23         ;;      sleep(1/2);
24         ;; }
26     The following illustrates what happens if ctrl-C is hit 5 seconds
27     after the first command:
29         ; print sleep(20)
31         [Abort level 1]
32         15
34 EXAMPLE
35     ; sleep(1/3);
36     ; sleep(20);
38 LIBRARY
39     none
41 SEE ALSO
42     none
44 ## Copyright (C) 2000-2006  Ernest Bowen
46 ## Calc is open software; you can redistribute it and/or modify it under
47 ## the terms of the version 2.1 of the GNU Lesser General Public License
48 ## as published by the Free Software Foundation.
50 ## Calc is distributed in the hope that it will be useful, but WITHOUT
51 ## ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
52 ## or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General
53 ## Public License for more details.
55 ## A copy of version 2.1 of the GNU Lesser General Public License is
56 ## distributed with calc under the filename COPYING-LGPL.  You should have
57 ## received a copy with calc; if not, write to Free Software Foundation, Inc.
58 ## 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
60 ## @(#) $Revision: 30.1 $
61 ## @(#) $Id: sleep,v 30.1 2007/03/16 11:10:42 chongo Exp $
62 ## @(#) $Source: /usr/local/src/cmd/calc/help/RCS/sleep,v $
64 ## Under source code control:   2000/12/14 01:33:00
65 ## File existed as early as:    2000
67 ## Share and enjoy!  :-)        http://www.isthe.com/chongo/tech/comp/calc/