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

操作系统开发

开发平台:

C/C++

  1. ." @(#)abort.3 6.3 (Berkeley) 5/27/86
  2. ."
  3. .TH ABORT 3 "May 27, 1986"
  4. .AT 3
  5. .SH NAME
  6. abort - generate a fault
  7. .SH SYNOPSIS
  8. .nf
  9. .ft B
  10. #include <stdlib.h>
  11. void abort(void)
  12. .ft R
  13. .fi
  14. .SH DESCRIPTION
  15. .B Abort
  16. executes an instruction which is illegal in user mode.
  17. This causes a signal that normally terminates
  18. the process with a core dump, which may be used for debugging.
  19. .SH SEE ALSO
  20. .BR sigaction (2),
  21. .BR exit (2).
  22. .SH DIAGNOSTICS
  23. Usually ``abort - core dumped'' from the shell.
  24. .SH BUGS
  25. The abort() function does not flush standard I/O buffers.  Use
  26. .BR fflush (3).