SIGxxxx #defines

De RAD Studio
Aller à : navigation, rechercher

Remonter à Signal.h - Index


Header File

signal.h

Description

Signal types used by raise and signal.



Signal

Note

Meaning

Default Action

SIGABRT

(*)

Abnormal termination

= to calling _exit(3)

SIGFPE

Bad floating-point operation

= to calling _exit(1)

Arithmetic error caused by

division by 0, invalid operation, etc.

SIGILL

Illegal operation

= to calling _exit(1)

SIGINT

Control-C interrupt

= to calling _exit(3)

SIGSEGV

Invalid access to storage

= to calling _exit(1)

SIGTERM

(*)

Request for program termination

= to calling _exit(1)



(*) Signal types marked with a (*) aren't generated by Borland C++ during normal operation. However, they can be generated with raise.