◐ Shell
clean mode source ↗

SIGTERM, SIGSEGV, SIGINT, SIGILL, SIGABRT, SIGFPE – cppreference.com

Aus cppreference.com

<metanoindex/>

<tbody> </tbody>

definiert in Header

<csignal>

#define SIGTERM /*implementation defined*/

#define SIGSEGV /*implementation defined*/

#define SIGINT /*implementation defined*/

#define SIGILL /*implementation defined*/

#define SIGABRT /*implementation defined*/

#define SIGFPE /*implementation defined*/

Jede der oben genannten Makro Konstanten auf Ganzzahlkonstante Ausdrucks mit unterschiedlichen Werten, die unterschiedlichen Signale, die zu dem Programm darstellen .

Original:

Each of the above macro constants to an integer constant expression with distinct values, which represent different signals sent to the program.

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Constant

Original:

Constant

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Explanation
SIGTERM

Kündigung Anfrage an das Programm

Original:

termination request, sent to the program

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

SIGSEGV

ungültigen Speicherzugriff (Segmentation Fault)

Original:

invalid memory access (segmentation fault)

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

SIGINT

externen Interrupt, normalerweise durch den Anwender initiiert wird

Original:

external interrupt, usually initiated by the user

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

SIGILL

ungültiges Programm Bild, wie ungültige Anweisung

Original:

invalid program image, such as invalid instruction

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

SIGABRT

Abbruch Zustand, wie beispielsweise initiiert durch abort()

Original:

abnormal termination condition, as is e.g. initiated by abort()

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

SIGFPE

Fehlerhafte arithmetische Operation wie Division durch Null

Original:

erroneous arithmetic operation such as divide by zero

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Siehe auch

setzt ein Signal-Handler für bestimmte Signal

Original:

sets a signal handler for particular signal

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.


(Funktion) [edit]

läuft der Signal-Handler für bestimmte Signal

Original:

runs the signal handler for particular signal

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.


(Funktion) [edit]

C documentation for signal types