raise
De cppreference.com
|
|
Esta página se ha traducido por ordenador/computador/computadora de la versión en inglés de la Wiki usando Google Translate.
La traducción puede contener errores y palabras aparatosas/incorrectas. Planea sobre el texto para ver la versión original. Puedes ayudar a corregir los errores y mejorar la traducción. Para instrucciones haz clic aquí. |
| Definido en el archivo de encabezado <signal.h>
|
||
int raise( int sig ); |
||
Envía la señal sig al programa. El manejador de señal, especificado mediante
signal() se invoca .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.
Si el usuario define la estrategia de manejo de la señal no se ajusta con
signal() sin embargo, es definido por la implementación si la señal será ignorada o manejador por defecto se invocará . 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.
Parámetros
| sig | - | la señal a enviar. Puede ser una aplicación definida por el valor o uno de los valores siguientes:
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. |
Valor de retorno
0 sobre el éxito, valor distinto de cero en caso de error .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.
Ejemplo
| Esta sección está incompleta Razón: sin ejemplo |
Ver también
establece un manejador de señal para la señal particular 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. (función) | |
Documentación de C++ para raise
| |