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

操作系统开发

开发平台:

WINDOWS

  1. ALARM(2)                  Minix Programmer's Manual                   ALARM(2)
  2. NAME
  3.      alarm - schedule signal after specified time
  4. SYNOPSIS
  5.      #include <unistd.h>
  6.      unsigned int alarm(unsigned int seconds)
  7. DESCRIPTION
  8.      Alarm causes signal SIGALRM, see sigaction(2), to be sent to the invoking
  9.      process  in  a number of seconds given by the argument.  Unless caught or
  10.      ignored, the signal terminates the process.
  11.      Alarm requests are not stacked; successive calls reset the  alarm  clock.
  12.      If  the  argument  is  0,  any  alarm  request  is  canceled.  Because of
  13.      scheduling delays, resumption of execution of when the signal  is  caught
  14.      may be delayed an arbitrary amount.
  15.      The return value is the amount of time previously remaining in the  alarm
  16.      clock.
  17. SEE ALSO
  18.      pause(2), sigsuspend(2), sigaction(2), sleep(3).
  19. 4BSD                              May 27, 1986                               1