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

操作系统开发

开发平台:

WINDOWS

  1. ABORT(3)                  Minix Programmer's Manual                   ABORT(3)
  2. NAME
  3.      abort - generate a fault
  4. SYNOPSIS
  5.      #include <stdlib.h>
  6.      void abort(void)
  7. DESCRIPTION
  8.      Abort executes an instruction which is illegal in user mode.  This causes
  9.      a signal that normally terminates the process with a core dump, which may
  10.      be used for debugging.
  11. SEE ALSO
  12.      sigaction(2), exit(2).
  13. DIAGNOSTICS
  14.      Usually ``abort - core dumped'' from the shell.
  15. BUGS
  16.      The abort() function does not flush standard I/O buffers.  Use fflush(3).
  17.                                 May 27, 1986                                 1