std::raise
De cppreference.com
[] |
This page has been machine-translated from the English version of the wiki using Google Translate.
The translation may contain errors and awkward wording. Hover over text to see the original version. You can help to fix errors and improve the translation. For instructions click here. |
<metanoindex/>
<tbody> </tbody>| Dclar dans l'en-tte <csignal>
|
||
int raise( int sig ); |
||
Envoie un signal sig au programme. Le gestionnaire de signal, spcifi en utilisant signal() est invoque.
Si la stratgie de gestion des signals dfinie par l'utilisateur n'est pas encore mis en place l'aide de signal(), soit le signal est ignor, soit le gestionnaire par dfaut sera invoque selon l'implmentation dfini.
Paramtres
| sig | - | le signal envoyer. Elle peut tre mise en oeuvre dfinie par une valeur ou une des valeurs suivantes:
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. | ||||||||
Retourne la valeur
0 en cas de succs, une valeur non nulle en cas d'chec .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.
You can help to correct and verify the translation. Click here for instructions.
Exemple
| This section is incomplete Reason: no example |
Voir aussi
dfinit un gestionnaire de signal pour un signal particulier 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. (fonction) | |
C documentation for raise
| |