SIGTERM, SIGSEGV, SIGINT, SIGILL, SIGABRT, SIGFPE
Da cppreference.com.
![]() | Questa pagina è stata tradotta in modo automatico dalla versione in ineglese della wiki usando Google Translate. La traduzione potrebbe contenere errori e termini strani. Muovi il puntatore sopra al testo per vedere la versione originale. Puoi aiutarci a correggere gli gli errori. Per ulteriori istruzioni clicca qui. |
Elemento definito nell'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*/ | ||
Ciascuna delle costanti macro sopra a un'espressione intera costante con valori distinti, che rappresentano diversi segnali inviati al programma.
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 | terminazione richiesta, inviato al programma 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 | accesso alla memoria non valida (errore di segmentazione) 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 | interrupt esterno, generalmente avviato dall'utente 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 | programma di immagine valido, ad esempio un'istruzione non valida 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 | condizione di terminazione anomala, come ad esempio iniziato da 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 | operazione aritmetica erronea, come una divisione per zero 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. |
[modifica]Vedi anche
imposta un gestore di segnale per il segnale particolare 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. (funzione) | |
esegue il gestore di segnale per il segnale particolare 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. (funzione) | |
C documentation for signal types |