Espacios de nombres
Variantes
Acciones

SIGTERM, SIGSEGV, SIGINT, SIGILL, SIGABRT, SIGFPE

De cppreference.com
< c‎ | program
 
 
Servicios públicos de apoyo a programas
Programa terminación
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.
La comunicación con el medio ambiente
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.
Señales
Original:
Signals
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Tipos de señal
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.
SIGABRTSIGFPESIGILLSIGINTSIGSEGVSIGTERM
No locales saltos
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.
Tipos
Original:
Types
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
 
Definido en el archivo de encabezado <signal.h>
#define SIGTERM /*implementation defined*/
#define SIGSEGV /*implementation defined*/
#define SIGINT /*implementation defined*/
#define SIGILL /*implementation defined*/
#define SIGABRT /*implementation defined*/
#define SIGFPE /*implementation defined*/
Cada una de las constantes macro anterior a una expresión entera constante con valores distintos, que representan diferentes señales enviadas al programa .
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
solicitud de finalización, enviado al programa
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
acceso a memoria no válido (error de segmentación)
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
interrupción externa, usualmente iniciada por el usuario
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
imagen del programa no válido, tal como una instrucción inválida
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
condición de terminación anormal, como por ejemplo iniciado por 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
operación aritmética errónea como la división por cero
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.

[editar]Ver también

establece un manejador de señal para la señal particular
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.

(función)[editar]
ejecuta el manejador de señal para señal particular
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.

(función)[editar]
Documentación de C++ para signal types
close