Namensräume
Varianten

SIGTERM, SIGSEGV, SIGINT, SIGILL, SIGABRT, SIGFPE

Aus cppreference.com
< cpp‎ | utility‎ | program

 
 
 
Das Programm unterstützt Versorgungsunternehmen
Beendigung des Programms
Original:
Program termination
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Die Kommunikation mit der Umwelt
Original:
Communicating with the environment
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Signale
Original:
Signals
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Signal-Typen
Original:
Signal types
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
SIGABRT
SIGFPE
SIGILL
SIGINT
SIGSEGV
SIGTERM
Nicht-lokale Sprünge
Original:
Non-local jumps
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
setjmp
longjmp
Types
Original:
Types
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
jmp_buf
 
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.

[Bearbeiten]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
close