home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 8 / FreshFishVol8-CD1.bin / gnu / man / cat3 / sleep.0 < prev    next >
Text File  |  1993-12-07  |  2KB  |  67 lines

  1.  
  2. SLEEP(3)                   UNIX Programmer's Manual                   SLEEP(3)
  3.  
  4. NNAAMMEE
  5.      sslleeeepp - suspend process execution for interval of seconds
  6.  
  7. SSYYNNOOPPSSIISS
  8.      ##iinncclluuddee <<uunniissttdd..hh>>
  9.  
  10.      _i_n_t
  11.      sslleeeepp(_u___i_n_t _s_e_c_o_n_d_s)
  12.  
  13. DDEESSCCRRIIPPTTIIOONN
  14.      The sslleeeepp() function suspends execution of the calling process for
  15.      _s_e_c_o_n_d_s of time.  System activity or time spent in processing the call
  16.      may lengthen the sleep by a second.
  17.  
  18.      If a timer is already running on the process its state is saved.  If the
  19.      value _s_e_c_o_n_d_s is more than or equal to the remaining clock time for the
  20.      saved timer, the sleep time is set to the remaining clock time.  The
  21.      state of the previous timer is restored after _s_e_c_o_n_d_s has passed.
  22.  
  23.      This function is implemented using setitimer(2);  it requires eight sys­
  24.      tem calls each time it is invoked.  A similar but less compatible func­
  25.      tion can be obtained with a single select(2);  such a function would not
  26.      restart after signals, but would not interfere with other uses of
  27.      setitimer.
  28.  
  29. RREETTUURRNN VVAALLUUEESS
  30. SSEEEE AALLSSOO
  31.      setitimer(2),  sigpause(2),  usleep(3)
  32.  
  33. HHIISSTTOORRYY
  34.      A sslleeeepp() function appeared in Version 7 AT&T UNIX.
  35.  
  36. BSD Experimental                April 19, 1991                               1
  37.  
  38.  
  39.  
  40.  
  41.  
  42.  
  43.  
  44.  
  45.  
  46.  
  47.  
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.  
  64.  
  65.  
  66.  
  67.