Пространства имён
Варианты
Действия

SIG_DFL, SIG_IGN

Материал из cppreference.com

 
 
 
Коммунальные услуги Программа поддержки
Программа прекращения
Original:
Program termination
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
abort
exit
quick_exit(C++11)
_Exit(C++11)
Взаимодействие с окружающей средой
Original:
Communicating with the environment
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Сигналы
Original:
Signals
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
SIG_DFL
SIG_IGN
SIG_ERR
Сигнал типа
Original:
Signal types
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
SIGABRT
SIGFPE
SIGILL
SIGINT
SIGSEGV
SIGTERM
Нелокальные переходы
Original:
Non-local jumps
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
setjmp
longjmp
Типы
Original:
Types
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
jmp_buf
 
Заголовочный файл <csignal>
#define SIG_DFL /*implementation defined*/
#define SIG_IGN /*implementation defined*/
SIG_DFL и SIG_IGN макросы выйти на интегральные выражения, которые не являются равными адрес любой функции. Макросы определения стратегий обработки сигнала для функции std::signal().
Original:
The SIG_DFL and SIG_IGN macros expand into integral expressions that are not equal to an address of any function. The macros define signal handling strategies for std::signal() function.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Constant
Original:
Constant
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Explanation
SIG_DFL
по умолчанию обработку сигнала
Original:
default signal handling
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
SIF_IGN
Сигнал игнорируется
Original:
signal is ignored
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

[править] См. также

C документация для SIG_DFL, SIG_IGN