SLEEP.3
上传用户:jnzhq888
上传日期:2007-01-18
资源大小:51694k
文件大小:1k
源码类别:

操作系统开发

开发平台:

WINDOWS

  1. SLEEP(3)                  Minix Programmer's Manual                   SLEEP(3)
  2. NAME
  3.      sleep - suspend execution for interval
  4. SYNOPSIS
  5.      #include <unistd.h>
  6.      unsigned int sleep(unsigned int seconds)
  7. DESCRIPTION
  8.      The current process is suspended from execution for the number of seconds
  9.      specified by the argument.
  10.      The routine is implemented by setting an alarm timer and pausing until it
  11.      occurs.   The previous state of this timer is saved and restored.  If the
  12.      sleep time exceeds the time to the expiration of the previous timer,  the
  13.      process  sleeps only until the signal would have occurred, and the signal
  14.      is sent 1 second later.
  15. SEE ALSO
  16.      alarm(2), pause(2).
  17. 4BSD                              May 12, 1986                               1