◐ Shell
clean mode source ↗

std::raise - cppreference.com

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.

Click here for the English version of this page

<metanoindex/>

<tbody> </tbody>

Elemento definito nell'header

<csignal>

int raise( int sig );

Invia il segnale sig al programma. Il gestore del segnale, specificato usando signal() viene richiamato.

Original:

Sends signal sig to the program. The signal handler, specified using signal() is invoked.

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

Se l'utente definito strategia di gestione del segnale non è impostato con signal() ancora, è l'implementazione definita se il segnale verrà ignorato o gestore di default verrà richiamato.

Original:

If the user-defined signal handling strategy is not set using signal() yet, it is implementation-defined whether the signal will be ignored or default handler will be invoked.

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

Parametri

sig -

il segnale da inviare. Può essere un'implementazione valore definito o uno dei seguenti valori:

Original:

the signal to be sent. It can be an implementation-defined value or one of the following values:

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

Valore di ritorno

0 caso di successo, valore diverso da zero in caso di fallimento.

Original:

0 upon success, non-zero value on failure.

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

Esempio

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) [modifica]