SIGTERM, SIGSEGV, SIGINT, SIGILL, SIGABRT, SIGFPE
De cppreference.com
![]() | Esta página se ha traducido por ordenador/computador/computadora de la versión en inglés de la Wiki usando Google Translate. La traducción puede contener errores y palabras aparatosas/incorrectas. Planea sobre el texto para ver la versión original. Puedes ayudar a corregir los errores y mejorar la traducción. Para instrucciones haz clic aquí. |
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.
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) | |
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) | |
Documentación de C++ para signal types |