std::raise
Aus 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. |
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.
Inhaltsverzeichnis |
[Bearbeiten] 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. |
[Bearbeiten] 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.
[Bearbeiten] Beispiel
This section is incomplete Reason: no example |
[Bearbeiten] Siehe auch
setzt ein Signal-Handler für bestimmte Signal 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. (Funktion) | |
C documentation for raise
|