Namespaces
Variants
Views
Actions

Difference between revisions of "cpp/utility/program/signal"

From cppreference.com
< cpp‎ | utility‎ | program
(+more info)
(Link update.)
 
(43 intermediate revisions by 17 users not shown)
Line 1: Line 1:
{{cpp/title| signal}}
+
{{cpp/title|signal}}
 
{{cpp/utility/program/navbar}}
 
{{cpp/utility/program/navbar}}
{{ddcl | header=csignal |
+
{{dcl begin}}
void (*signal( int sig, void (*handler) (int))) (int);
+
{{dcl header|csignal}}
 +
{{dcl|num=1|
 +
/* signal-handler */* signal( int sig, /* signal-handler */* handler );
 
}}
 
}}
 +
{{dcl|num=2|notes={{mark expos}}|1=
 +
extern "C" using /* signal-handler */ = void(int);
 +
}}
 +
{{dcl end}}
  
Sets the error handler for signal {{tt|sig}}. The signal handler can be set so that default handling will occur, signal is ignored, or an user-defined function is called.
+
Changes handling of the signal {{c|sig}}. Depending on {{c|handler}}, the signal can be ignored, set to default, or handled by a user-defined function.
  
When signal handler is set to a function and a signal occurs, it is implementation defined whether {{c|std::signal(sig, SIG_DFL)}} will be executed immediately before the start of signal handler. Also, the implementation can prevent some implementation-defined set of signals from occurring while the signal handler runs.
+
<!--C11's 7.14.1p3-->When signal handler is set to a function and a signal occurs, it is implementation defined whether {{c|std::signal(sig, SIG_DFL)}} will be executed immediately before the start of signal handler. Also, the implementation can prevent some implementation-defined set of signals from occurring while the signal handler runs.  
  
 
For some of the signals, the implementation may call {{c|std::signal(sig, SIG_IGN)}} at the startup of the program. For the rest, the implementation must call {{c|std::signal(sig, SIG_DFL)}}.
 
For some of the signals, the implementation may call {{c|std::signal(sig, SIG_IGN)}} at the startup of the program. For the rest, the implementation must call {{c|std::signal(sig, SIG_DFL)}}.
  
If the user defined function returns when handling {{rlpt|SIGFPE}}, {{rlpt|SIGILL}}, {{rlpt|SIGSEGV}} or any other implementation-defined signal specifying a computational exception, the behavior is undefined. In most implementations the program terminates.
+
(Note: POSIX introduced [https://pubs.opengroup.org/onlinepubs/9699919799/functions/sigaction.html {{tt|sigaction}}] to standardize these implementation-defined behaviors)
 
+
If the signal handler is called as a result of {{c|std::abort}} or {{c|std::raise}}, the behavior is undefined if any of the following requirements is not followed:
+
+
* the signal handler calls {{c|std::raise}}.
+
* the signal handler refers to an object of static storage duration which is not declared as {{c|volatile std::sig_atomic_t}}.
+
* the signal handler calls any function within the standard library, except {{c|std::abort}}, {{c|std::_Exit}}, or {{c|std::signal}} with the first argument not being the number of the signal currently handled.
+
  
 
===Parameters===
 
===Parameters===
{{param list begin}}
+
{{par begin}}
{{param list item | sig | the signal to set the signal handler to. It can be an implementation-defined value or one of the following values:  
+
{{par|sig|the signal to set the signal handler to. It can be an implementation-defined value or one of the following values:  
{{dcl list begin}}
+
{{dsc begin}}
{{dcl list template | cpp/utility/program/dcl list SIG_types}}
+
{{dsc inc|cpp/utility/program/dsc SIG_types}}
{{dcl list end}}
+
{{dsc end}}}}
 +
{{par|handler|the signal handler. This must be one of the following:
 +
* {{lc|SIG_DFL}} macro. The signal handler is set to default signal handler.
 +
* {{lc|SIG_IGN}} macro. The signal is ignored.
 +
* A pointer to a function. The signature of the function must be equivalent to the following:
 +
{{ddcl|extern "C" void fun(int sig);}}
 
}}
 
}}
{{param list item | handler | the signal handler. This must be one of the following:
+
{{par end}}
*{{c|SIG_DFL}} macro. The signal handler is set to default signal handler.
+
 
*{{c|SIG_IGN}} macro. The signal is ignored.
+
===Return value===
*pointer to a function. The signature of the function must be equivalent to the following:
+
Previous signal handler on success or {{lc|SIG_ERR}} on failure (setting a signal handler can be disabled on some implementations).
{{ddcl |  
+
 
void fun(int sig);
+
===Signal handler===
 +
The following limitations are imposed on the user-defined function that is installed as a signal handler.
 +
 
 +
{{rev begin}}
 +
{{rev|until=c++17|
 +
If the signal handler is called NOT as a result of {{lc|std::abort}} or {{lc|std::raise}} (asynchronous signal), the behavior is undefined if
 +
* the signal handler calls any function within the standard library, except
 +
:* {{lc|std::abort}}
 +
:* {{lc|std::_Exit}}
 +
:* {{lc|std::quick_exit}}
 +
:* {{tt|std::signal}} with the first argument being the number of the signal currently handled (async handler can re-register itself, but not other signals).
 +
* the signal handler refers to any object with static storage duration that is not {{rev inl|since=c++11|{{lc|std::atomic}} or }}{{c/core|volatile std::sig_atomic_t}}.
 
}}
 
}}
 +
{{rev|since=c++17|
 +
A ''plain lock-free atomic operation'' is an invocation of a function {{c|f}} from {{header|atomic}}{{rev inl|since=c++23| or {{header|stdatomic.h}}}}, such that:
 +
* {{c|f}} is the function {{lc|std::atomic_is_lock_free}},
 +
* {{c|f}} is the member function {{tt|is_lock_free}} (e.g. {{l2tf std|cpp/atomic/atomic/is_lock_free}}),
 +
* {{c|f}} is a non-static member function of {{lc|std::atomic_flag}},
 +
* {{c|f}} is a non-member function, and the first parameter of {{c|f}} has type ''cv'' {{c/core|std::atomic_flag*}},
 +
* {{c|f}} is a non-static member function invoked on an object {{c|obj}}, such that {{c|obj.is_lock_free()}} yields {{c|true}}, or
 +
* {{c|f}} is a non-member function, and for every pointer-to-atomic argument {{c|arg}} passed to {{c|f}}, {{c|std::atomic_is_lock_free(arg)}} yields {{c|true}}.
 +
 +
The behavior is undefined if any signal handler performs any of the following:
 +
* call to any library function, except for plain lock-free atomic operations and the following ''signal-safe'' functions (note, in particular, dynamic allocation is not signal-safe):
 +
:* {{tt|std::signal}} with the first argument being the number of the signal currently handled (signal handler can re-register itself, but not other signals).
 +
:* member functions of {{lc|std::numeric_limits}}
 +
:* {{lc|std::_Exit}}
 +
:* {{lc|std::abort}}
 +
:* {{lc|std::quick_exit}}
 +
:* The member functions of {{lc|std::initializer_list}} and the {{tt|std::initializer_list}} overloads of {{lc|std::begin}} and {{lc|std::end}}
 +
:* {{lc|std::forward}}, {{lc|std::move}}, {{lc|std::move_if_noexcept}}
 +
:* All functions from {{header|type_traits}}
 +
:* {{lc|std::memcpy}} and {{lc|std::memmove}}
 +
* access to an object with thread storage duration
 +
* a {{ltt|cpp/language/dynamic_cast}} expression
 +
* a {{ltt|cpp/language/throw}} expression
 +
* entry to a {{ltt|cpp/language/try|{{c/core|try}} block}}
 +
* initialization of a static variable that performs [[cpp/language/initialization#Non-local variables|dynamic non-local initialization]] (including delayed until first ODR-use)
 +
* waits for completion of initialization of any variable with static storage duration due to another thread concurrently initializing it
 
}}
 
}}
{{param list end}}
+
{{rev end}}
  
===Return value===
+
<!--C11's 7.14.1p3-->If the user defined function returns when handling {{lc|SIGFPE}}, {{lc|SIGILL}}, {{lc|SIGSEGV}} or any other implementation-defined signal specifying a computational exception, the behavior is undefined.
Previous signal handler on success or {{rlpt|SIG_ERR}} on failure (setting a signal handler can be disabled on some implementations).
+
 
 +
<!--C11's 7.14.1p4-->If the signal handler is called as a result of {{lc|std::abort}} or {{lc|std::raise}} (synchronous signal), the behavior is undefined if the signal handler calls {{lc|std::raise}}.
 +
 
 +
{{rev begin}}
 +
{{rev|until=c++14|
 +
<!--C++11 [intro.execution]p6, C11 5.1.2.3p5-->On entry to the signal handler, the state of the [[cpp/numeric/fenv|floating-point environment]] and the values of all objects is unspecified, except for
 +
* objects of type {{c/core|volatile std::sig_atomic_t}}
 +
{{rrev|since=c++11|
 +
* objects of lock-free {{lc|std::atomic}} types
 +
<!--[atomics.fences]p6-->* side effects made visible through {{lc|std::atomic_signal_fence}} }}
 +
 
 +
On return from a signal handler, the value of any object modified by the signal handler that is not {{c/core|volatile std::sig_atomic_t}} or lock-free {{lc|std::atomic}} is indeterminate.
 +
}}
 +
{{rev|since=c++14|
 +
A call to the function {{tt|signal()}} [[cpp/atomic/memory_order|synchronizes-with]] any resulting invocation of the signal handler.
 +
 
 +
If a signal handler is executed as a result of a call to {{lc|std::raise}} (synchronously), then the execution of the handler is ''sequenced-after'' the invocation of {{tt|std::raise}} and ''sequenced-before'' the return from it and runs on the same thread as {{lc||std::raise}}. Execution of the handlers for other signals is ''unsequenced'' with respect to the rest of the program and runs on an unspecified thread.
 +
 
 +
Two accesses to the same object of type {{c/core|volatile std::sig_atomic_t}} do not result in a data race if both occur in the same thread, even if one or more occurs in a signal handler.
 +
For each signal handler invocation, evaluations performed by the thread invoking a signal handler can be divided into two groups A and B, such that no evaluations in B ''happen-before'' evaluations in A, and the evaluations of such {{c/core|volatile std::sig_atomic_t}} objects take values as though all evaluations in A [[cpp/atomic/memory_order|happened-before]] the execution of the signal handler and the execution of the signal handler ''happened-before'' all evaluations in B.
 +
}}
 +
{{rev end}}
 +
 
 +
===Notes===
 +
POSIX requires that {{tt|signal}} is thread-safe, and [https://pubs.opengroup.org/onlinepubs/9699919799/functions/V2_chap02.html#tag_15_04 specifies a list of async-signal-safe library functions] that may be called from any signal handler.
 +
 
 +
Signal handlers are expected to have [[cpp/language/language_linkage|C linkage]] and, in general, only use the features from the common subset of C and C++. However, common implementations allow a function with C++ linkage to be used as a signal handler.
  
 
===Example===
 
===Example===
 
{{example
 
{{example
|
+
|
| code=
+
|code=
| output=
+
#include <csignal>
 +
#include <iostream>
 +
 
 +
namespace
 +
{
 +
    volatile std::sig_atomic_t gSignalStatus;
 +
}
 +
 
 +
void signal_handler(int signal)
 +
{
 +
    gSignalStatus = signal;
 +
}
 +
 
 +
int main()
 +
{
 +
    // Install a signal handler
 +
    std::signal(SIGINT, signal_handler);
 +
   
 +
    std::cout << "SignalValue: " << gSignalStatus << '\n';
 +
    std::cout << "Sending signal: " << SIGINT << '\n';
 +
    std::raise(SIGINT);
 +
    std::cout << "SignalValue: " << gSignalStatus << '\n';
 +
}
 +
|p=true
 +
|output=
 +
SignalValue: 0
 +
Sending signal: 2
 +
SignalValue: 2
 
}}
 
}}
 +
 +
===References===
 +
{{ref std c++23}}
 +
{{ref std|section=17.13.5|title=Signal handlers|id=support.signal}}
 +
{{ref std end}}
 +
{{ref std c++20}}
 +
{{ref std|section=17.13.5|title=Signal handlers|id=support.signal}}
 +
{{ref std end}}
 +
{{ref std c++17}}
 +
{{ref std|section=21.10.4|title=Signal handlers|id=support.signal}}
 +
{{ref std end}}
 +
 +
===Defect reports===
 +
{{dr list begin}}
 +
{{dr list item|wg=lwg|dr=3756|std=C++17|before=it was unclear whether {{lc|std::atomic_flag}} is signal-safe|after=it is}}
 +
{{dr list end}}
  
 
===See also===
 
===See also===
{{dcl list begin}}
+
{{dsc begin}}
{{dcl list template | cpp/utility/program/dcl list raise}}
+
{{dsc inc|cpp/utility/program/dsc raise}}
{{dcl list see c | c/program/signal}}
+
{{dsc inc|cpp/atomic/dsc atomic_signal_fence}}
{{dcl list end}}
+
{{dsc see c|c/program/signal}}
 +
{{dsc end}}
  
[[fr:cpp/utility/program/signal]]
+
{{langlinks|de|es|fr|it|ja|pt|ru|zh}}
[[ja:cpp/utility/program/signal]]
+
[[zh:cpp/utility/program/signal]]
+

Latest revision as of 01:15, 5 June 2024

 
 
Utilities library
General utilities
Relational operators (deprecated in C++20)
 
 
Defined in header <csignal>
/* signal-handler */* signal( int sig, /* signal-handler */* handler );
(1)
extern "C" using /* signal-handler */ = void(int);
(2) (exposition only*)

Changes handling of the signal sig. Depending on handler, the signal can be ignored, set to default, or handled by a user-defined function.

When signal handler is set to a function and a signal occurs, it is implementation defined whether std::signal(sig, SIG_DFL) will be executed immediately before the start of signal handler. Also, the implementation can prevent some implementation-defined set of signals from occurring while the signal handler runs.

For some of the signals, the implementation may call std::signal(sig, SIG_IGN) at the startup of the program. For the rest, the implementation must call std::signal(sig, SIG_DFL).

(Note: POSIX introduced sigaction to standardize these implementation-defined behaviors)

Contents

[edit] Parameters

sig - the signal to set the signal handler to. It can be an implementation-defined value or one of the following values:
defines signal types
(macro constant) [edit]
handler - the signal handler. This must be one of the following:
  • SIG_DFL macro. The signal handler is set to default signal handler.
  • SIG_IGN macro. The signal is ignored.
  • A pointer to a function. The signature of the function must be equivalent to the following:
extern "C" void fun(int sig);


[edit] Return value

Previous signal handler on success or SIG_ERR on failure (setting a signal handler can be disabled on some implementations).

[edit] Signal handler

The following limitations are imposed on the user-defined function that is installed as a signal handler.

If the signal handler is called NOT as a result of std::abort or std::raise (asynchronous signal), the behavior is undefined if

  • the signal handler calls any function within the standard library, except
  • std::abort
  • std::_Exit
  • std::quick_exit
  • std::signal with the first argument being the number of the signal currently handled (async handler can re-register itself, but not other signals).
(until C++17)

A plain lock-free atomic operation is an invocation of a function f from <atomic> or <stdatomic.h>(since C++23), such that:

The behavior is undefined if any signal handler performs any of the following:

  • call to any library function, except for plain lock-free atomic operations and the following signal-safe functions (note, in particular, dynamic allocation is not signal-safe):
  • access to an object with thread storage duration
  • a dynamic_cast expression
  • a throw expression
  • entry to a try block
  • initialization of a static variable that performs dynamic non-local initialization (including delayed until first ODR-use)
  • waits for completion of initialization of any variable with static storage duration due to another thread concurrently initializing it
(since C++17)

If the user defined function returns when handling SIGFPE, SIGILL, SIGSEGV or any other implementation-defined signal specifying a computational exception, the behavior is undefined.

If the signal handler is called as a result of std::abort or std::raise (synchronous signal), the behavior is undefined if the signal handler calls std::raise.

On entry to the signal handler, the state of the floating-point environment and the values of all objects is unspecified, except for

(since C++11)

On return from a signal handler, the value of any object modified by the signal handler that is not volatile std::sig_atomic_t or lock-free std::atomic is indeterminate.

(until C++14)

A call to the function signal() synchronizes-with any resulting invocation of the signal handler.

If a signal handler is executed as a result of a call to std::raise (synchronously), then the execution of the handler is sequenced-after the invocation of std::raise and sequenced-before the return from it and runs on the same thread as std::raise. Execution of the handlers for other signals is unsequenced with respect to the rest of the program and runs on an unspecified thread.

Two accesses to the same object of type volatile std::sig_atomic_t do not result in a data race if both occur in the same thread, even if one or more occurs in a signal handler. For each signal handler invocation, evaluations performed by the thread invoking a signal handler can be divided into two groups A and B, such that no evaluations in B happen-before evaluations in A, and the evaluations of such volatile std::sig_atomic_t objects take values as though all evaluations in A happened-before the execution of the signal handler and the execution of the signal handler happened-before all evaluations in B.

(since C++14)

[edit] Notes

POSIX requires that signal is thread-safe, and specifies a list of async-signal-safe library functions that may be called from any signal handler.

Signal handlers are expected to have C linkage and, in general, only use the features from the common subset of C and C++. However, common implementations allow a function with C++ linkage to be used as a signal handler.

[edit] Example

#include <csignal>
#include <iostream>
 
namespace
{
    volatile std::sig_atomic_t gSignalStatus;
}
 
void signal_handler(int signal)
{
    gSignalStatus = signal;
}
 
int main()
{
    // Install a signal handler
    std::signal(SIGINT, signal_handler);
 
    std::cout << "SignalValue: " << gSignalStatus << '\n';
    std::cout << "Sending signal: " << SIGINT << '\n';
    std::raise(SIGINT);
    std::cout << "SignalValue: " << gSignalStatus << '\n';
}

Possible output:

SignalValue: 0
Sending signal: 2
SignalValue: 2

[edit] References

  • C++23 standard (ISO/IEC 14882:2024):
  • 17.13.5 Signal handlers [support.signal]
  • C++20 standard (ISO/IEC 14882:2020):
  • 17.13.5 Signal handlers [support.signal]
  • C++17 standard (ISO/IEC 14882:2017):
  • 21.10.4 Signal handlers [support.signal]

[edit] Defect reports

The following behavior-changing defect reports were applied retroactively to previously published C++ standards.

DR Applied to Behavior as published Correct behavior
LWG 3756 C++17 it was unclear whether std::atomic_flag is signal-safe it is

[edit] See also

runs the signal handler for particular signal
(function) [edit]
fence between a thread and a signal handler executed in the same thread
(function) [edit]
C documentation for signal