std::raise
Aus cppreference.com
<metanoindex/>
<tbody> </tbody>| definiert in Header <csignal>
|
||
int raise( int sig ); |
||
Sendet Signal sig auf dem Programm. Das Signal-Handler angegeben mit
signal() aufgerufen wird .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.
You can help to correct and verify the translation. Click here for instructions.
Wenn der Benutzer-definierten Signal-Handling-Strategie nicht gesetzt ist mit
signal() doch ist es die Implementierung definiert, ob das Signal ignoriert wird oder Standard-Handler aufgerufen wird . 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.
You can help to correct and verify the translation. Click here for instructions.
Parameter
| sig | - | das Signal gesendet werden soll. Es kann eine Implementierung definierter Wert oder einer der folgenden Werte sein:
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. | ||||||||
Rückgabewert
0 auf Erfolg, Wert ungleich Null im Fehlerfall .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.
Beispiel
| This section is incomplete Reason: no example |
