| 1 |
|
|
1 |
|
|
| 2 |
|
// Copyright (c) 2025 Vinnie Falco (vinnie.falco@gmail.com)
|
2 |
|
// Copyright (c) 2025 Vinnie Falco (vinnie.falco@gmail.com)
|
| 3 |
|
// Copyright (c) 2026 Steve Gerbino
|
3 |
|
// Copyright (c) 2026 Steve Gerbino
|
| 4 |
|
|
4 |
|
|
| 5 |
|
// Distributed under the Boost Software License, Version 1.0. (See accompanying
|
5 |
|
// Distributed under the Boost Software License, Version 1.0. (See accompanying
|
| 6 |
|
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
6 |
|
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
| 7 |
|
|
7 |
|
|
| 8 |
|
// Official repository: https://github.com/cppalliance/corosio
|
8 |
|
// Official repository: https://github.com/cppalliance/corosio
|
| 9 |
|
|
9 |
|
|
| 10 |
|
|
10 |
|
|
| 11 |
|
#ifndef BOOST_COROSIO_SIGNAL_SET_HPP
|
11 |
|
#ifndef BOOST_COROSIO_SIGNAL_SET_HPP
|
| 12 |
|
#define BOOST_COROSIO_SIGNAL_SET_HPP
|
12 |
|
#define BOOST_COROSIO_SIGNAL_SET_HPP
|
| 13 |
|
|
13 |
|
|
| 14 |
|
#include <boost/corosio/detail/config.hpp>
|
14 |
|
#include <boost/corosio/detail/config.hpp>
|
| 15 |
|
#include <boost/corosio/io/io_signal_set.hpp>
|
15 |
|
#include <boost/corosio/io/io_signal_set.hpp>
|
| 16 |
|
#include <boost/capy/ex/execution_context.hpp>
|
16 |
|
#include <boost/capy/ex/execution_context.hpp>
|
| 17 |
|
#include <boost/capy/concept/executor.hpp>
|
17 |
|
#include <boost/capy/concept/executor.hpp>
|
| 18 |
|
|
18 |
|
|
| 19 |
|
|
19 |
|
|
| 20 |
|
|
20 |
|
|
| 21 |
|
|
21 |
|
|
| 22 |
|
|
22 |
|
|
| 23 |
|
|
23 |
|
|
| 24 |
|
|
24 |
|
|
| 25 |
|
|
25 |
|
|
| 26 |
|
This header provides the public interface for asynchronous signal handling.
|
26 |
|
This header provides the public interface for asynchronous signal handling.
|
| 27 |
|
The implementation is split across platform-specific files:
|
27 |
|
The implementation is split across platform-specific files:
|
| 28 |
|
- posix/signals.cpp: Uses sigaction() for robust signal handling
|
28 |
|
- posix/signals.cpp: Uses sigaction() for robust signal handling
|
| 29 |
|
- iocp/signals.cpp: Uses C runtime signal() (Windows lacks sigaction)
|
29 |
|
- iocp/signals.cpp: Uses C runtime signal() (Windows lacks sigaction)
|
| 30 |
|
|
30 |
|
|
| 31 |
|
|
31 |
|
|
| 32 |
|
|
32 |
|
|
| 33 |
|
1. Abstract flag values: The flags_t enum uses arbitrary bit positions
|
33 |
|
1. Abstract flag values: The flags_t enum uses arbitrary bit positions
|
| 34 |
|
(not SA_RESTART, etc.) to avoid including <signal.h> in public headers.
|
34 |
|
(not SA_RESTART, etc.) to avoid including <signal.h> in public headers.
|
| 35 |
|
The POSIX implementation maps these to actual SA_* constants internally.
|
35 |
|
The POSIX implementation maps these to actual SA_* constants internally.
|
| 36 |
|
|
36 |
|
|
| 37 |
|
2. Flag conflict detection: When multiple signal_sets register for the
|
37 |
|
2. Flag conflict detection: When multiple signal_sets register for the
|
| 38 |
|
same signal, they must use compatible flags. The first registration
|
38 |
|
same signal, they must use compatible flags. The first registration
|
| 39 |
|
establishes the flags; subsequent registrations must match or use
|
39 |
|
establishes the flags; subsequent registrations must match or use
|
| 40 |
|
|
40 |
|
|
| 41 |
|
|
41 |
|
|
| 42 |
|
3. Polymorphic implementation: implementation is an abstract base that
|
42 |
|
3. Polymorphic implementation: implementation is an abstract base that
|
| 43 |
|
platform-specific implementations (posix_signal, win_signal)
|
43 |
|
platform-specific implementations (posix_signal, win_signal)
|
| 44 |
|
derive from. This allows the public API to be platform-agnostic.
|
44 |
|
derive from. This allows the public API to be platform-agnostic.
|
| 45 |
|
|
45 |
|
|
| 46 |
|
4. The inline add(int) overload avoids a virtual call for the common case
|
46 |
|
4. The inline add(int) overload avoids a virtual call for the common case
|
| 47 |
|
of adding signals without flags (delegates to add(int, none)).
|
47 |
|
of adding signals without flags (delegates to add(int, none)).
|
| 48 |
|
|
48 |
|
|
| 49 |
|
|
49 |
|
|
| 50 |
|
namespace boost::corosio {
|
50 |
|
namespace boost::corosio {
|
| 51 |
|
|
51 |
|
|
| 52 |
|
/** An asynchronous signal set for coroutine I/O.
|
52 |
|
/** An asynchronous signal set for coroutine I/O.
|
| 53 |
|
|
53 |
|
|
| 54 |
|
This class provides the ability to perform an asynchronous wait
|
54 |
|
This class provides the ability to perform an asynchronous wait
|
| 55 |
|
for one or more signals to occur. The signal set registers for
|
55 |
|
for one or more signals to occur. The signal set registers for
|
| 56 |
|
signals using sigaction() on POSIX systems or the C runtime
|
56 |
|
signals using sigaction() on POSIX systems or the C runtime
|
| 57 |
|
signal() function on Windows.
|
57 |
|
signal() function on Windows.
|
| 58 |
|
|
58 |
|
|
| 59 |
|
|
59 |
|
|
| 60 |
|
Distinct objects: Safe.@n
|
60 |
|
Distinct objects: Safe.@n
|
| 61 |
|
Shared objects: Unsafe. A signal_set must not have concurrent
|
61 |
|
Shared objects: Unsafe. A signal_set must not have concurrent
|
| 62 |
|
|
62 |
|
|
| 63 |
|
|
63 |
|
|
| 64 |
|
|
64 |
|
|
| 65 |
|
Wraps platform signal handling (sigaction on POSIX, C runtime
|
65 |
|
Wraps platform signal handling (sigaction on POSIX, C runtime
|
| 66 |
|
signal() on Windows). Operations dispatch to OS signal APIs
|
66 |
|
signal() on Windows). Operations dispatch to OS signal APIs
|
| 67 |
|
via the io_context reactor.
|
67 |
|
via the io_context reactor.
|
| 68 |
|
|
68 |
|
|
| 69 |
|
|
69 |
|
|
| 70 |
|
On Windows, the following signals are supported:
|
70 |
|
On Windows, the following signals are supported:
|
| 71 |
|
SIGINT, SIGTERM, SIGABRT, SIGFPE, SIGILL, SIGSEGV.
|
71 |
|
SIGINT, SIGTERM, SIGABRT, SIGFPE, SIGILL, SIGSEGV.
|
| 72 |
|
|
72 |
|
|
| 73 |
|
|
73 |
|
|
| 74 |
|
|
74 |
|
|
| 75 |
|
signal_set signals(ctx, SIGINT, SIGTERM);
|
75 |
|
signal_set signals(ctx, SIGINT, SIGTERM);
|
| 76 |
|
auto [ec, signum] = co_await signals.wait();
|
76 |
|
auto [ec, signum] = co_await signals.wait();
|
| 77 |
|
if (ec == capy::cond::canceled)
|
77 |
|
if (ec == capy::cond::canceled)
|
| 78 |
|
|
78 |
|
|
| 79 |
|
// Operation was cancelled via stop_token or cancel()
|
79 |
|
// Operation was cancelled via stop_token or cancel()
|
| 80 |
|
|
80 |
|
|
| 81 |
|
|
81 |
|
|
| 82 |
|
|
82 |
|
|
| 83 |
|
std::cout << "Received signal " << signum << std::endl;
|
83 |
|
std::cout << "Received signal " << signum << std::endl;
|
| 84 |
|
|
84 |
|
|
| 85 |
|
|
85 |
|
|
| 86 |
|
|
86 |
|
|
| 87 |
|
class BOOST_COROSIO_DECL signal_set : public io_signal_set
|
87 |
|
class BOOST_COROSIO_DECL signal_set : public io_signal_set
|
| 88 |
|
|
88 |
|
|
| 89 |
|
|
89 |
|
|
| 90 |
|
/** Flags for signal registration.
|
90 |
|
/** Flags for signal registration.
|
| 91 |
|
|
91 |
|
|
| 92 |
|
These flags control the behavior of signal handling. Multiple
|
92 |
|
These flags control the behavior of signal handling. Multiple
|
| 93 |
|
flags can be combined using the bitwise OR operator.
|
93 |
|
flags can be combined using the bitwise OR operator.
|
| 94 |
|
|
94 |
|
|
| 95 |
|
@note Flags only have effect on POSIX systems. On Windows,
|
95 |
|
@note Flags only have effect on POSIX systems. On Windows,
|
| 96 |
|
only `none` and `dont_care` are supported; other flags return
|
96 |
|
only `none` and `dont_care` are supported; other flags return
|
| 97 |
|
`operation_not_supported`.
|
97 |
|
`operation_not_supported`.
|
| 98 |
|
|
98 |
|
|
| 99 |
|
|
99 |
|
|
| 100 |
|
|
100 |
|
|
| 101 |
|
/// Use existing flags if signal is already registered.
|
101 |
|
/// Use existing flags if signal is already registered.
|
| 102 |
|
/// When adding a signal that's already registered by another
|
102 |
|
/// When adding a signal that's already registered by another
|
| 103 |
|
/// signal_set, this flag indicates acceptance of whatever
|
103 |
|
/// signal_set, this flag indicates acceptance of whatever
|
| 104 |
|
/// flags were used for the existing registration.
|
104 |
|
/// flags were used for the existing registration.
|
| 105 |
|
|
105 |
|
|
| 106 |
|
|
106 |
|
|
| 107 |
|
|
107 |
|
|
| 108 |
|
|
108 |
|
|
| 109 |
|
|
109 |
|
|
| 110 |
|
/// Restart interrupted system calls.
|
110 |
|
/// Restart interrupted system calls.
|
| 111 |
|
/// Equivalent to SA_RESTART on POSIX systems.
|
111 |
|
/// Equivalent to SA_RESTART on POSIX systems.
|
| 112 |
|
|
112 |
|
|
| 113 |
|
|
113 |
|
|
| 114 |
|
/// Don't generate SIGCHLD when children stop.
|
114 |
|
/// Don't generate SIGCHLD when children stop.
|
| 115 |
|
/// Equivalent to SA_NOCLDSTOP on POSIX systems.
|
115 |
|
/// Equivalent to SA_NOCLDSTOP on POSIX systems.
|
| 116 |
|
|
116 |
|
|
| 117 |
|
|
117 |
|
|
| 118 |
|
/// Don't create zombie processes on child termination.
|
118 |
|
/// Don't create zombie processes on child termination.
|
| 119 |
|
/// Equivalent to SA_NOCLDWAIT on POSIX systems.
|
119 |
|
/// Equivalent to SA_NOCLDWAIT on POSIX systems.
|
| 120 |
|
|
120 |
|
|
| 121 |
|
|
121 |
|
|
| 122 |
|
/// Don't block the signal while its handler runs.
|
122 |
|
/// Don't block the signal while its handler runs.
|
| 123 |
|
/// Equivalent to SA_NODEFER on POSIX systems.
|
123 |
|
/// Equivalent to SA_NODEFER on POSIX systems.
|
| 124 |
|
|
124 |
|
|
| 125 |
|
|
125 |
|
|
| 126 |
|
/// Reset handler to SIG_DFL after one invocation.
|
126 |
|
/// Reset handler to SIG_DFL after one invocation.
|
| 127 |
|
/// Equivalent to SA_RESETHAND on POSIX systems.
|
127 |
|
/// Equivalent to SA_RESETHAND on POSIX systems.
|
| 128 |
|
|
128 |
|
|
| 129 |
|
|
129 |
|
|
| 130 |
|
|
130 |
|
|
| 131 |
|
/// Combine two flag values.
|
131 |
|
/// Combine two flag values.
|
| 132 |
|
friend constexpr flags_t operator|(flags_t a, flags_t b) noexcept
|
132 |
|
friend constexpr flags_t operator|(flags_t a, flags_t b) noexcept
|
| 133 |
|
|
133 |
|
|
| 134 |
|
return static_cast<flags_t>(
|
134 |
|
return static_cast<flags_t>(
|
| 135 |
|
static_cast<unsigned>(a) | static_cast<unsigned>(b));
|
135 |
|
static_cast<unsigned>(a) | static_cast<unsigned>(b));
|
| 136 |
|
|
136 |
|
|
| 137 |
|
|
137 |
|
|
| 138 |
|
/// Mask two flag values.
|
138 |
|
/// Mask two flag values.
|
| 139 |
|
friend constexpr flags_t operator&(flags_t a, flags_t b) noexcept
|
139 |
|
friend constexpr flags_t operator&(flags_t a, flags_t b) noexcept
|
| 140 |
|
|
140 |
|
|
| 141 |
|
return static_cast<flags_t>(
|
141 |
|
return static_cast<flags_t>(
|
| 142 |
|
static_cast<unsigned>(a) & static_cast<unsigned>(b));
|
142 |
|
static_cast<unsigned>(a) & static_cast<unsigned>(b));
|
| 143 |
|
|
143 |
|
|
| 144 |
|
|
144 |
|
|
| 145 |
|
/// Compound assignment OR.
|
145 |
|
/// Compound assignment OR.
|
| 146 |
|
friend constexpr flags_t& operator|=(flags_t& a, flags_t b) noexcept
|
146 |
|
friend constexpr flags_t& operator|=(flags_t& a, flags_t b) noexcept
|
| 147 |
|
|
147 |
|
|
| 148 |
|
|
148 |
|
|
| 149 |
|
|
149 |
|
|
| 150 |
|
|
150 |
|
|
| 151 |
|
/// Compound assignment AND.
|
151 |
|
/// Compound assignment AND.
|
| 152 |
|
friend constexpr flags_t& operator&=(flags_t& a, flags_t b) noexcept
|
152 |
|
friend constexpr flags_t& operator&=(flags_t& a, flags_t b) noexcept
|
| 153 |
|
|
153 |
|
|
| 154 |
|
|
154 |
|
|
| 155 |
|
|
155 |
|
|
| 156 |
|
|
156 |
|
|
| 157 |
|
/// Bitwise NOT (complement).
|
157 |
|
/// Bitwise NOT (complement).
|
| 158 |
|
friend constexpr flags_t operator~(flags_t a) noexcept
|
158 |
|
friend constexpr flags_t operator~(flags_t a) noexcept
|
| 159 |
|
|
159 |
|
|
| 160 |
|
return static_cast<flags_t>(~static_cast<unsigned>(a));
|
160 |
|
return static_cast<flags_t>(~static_cast<unsigned>(a));
|
| 161 |
|
|
161 |
|
|
| 162 |
|
|
162 |
|
|
| 163 |
|
struct implementation : io_signal_set::implementation
|
163 |
|
struct implementation : io_signal_set::implementation
|
| 164 |
|
|
164 |
|
|
| 165 |
|
virtual std::error_code add(int signal_number, flags_t flags) = 0;
|
165 |
|
virtual std::error_code add(int signal_number, flags_t flags) = 0;
|
| 166 |
|
virtual std::error_code remove(int signal_number) = 0;
|
166 |
|
virtual std::error_code remove(int signal_number) = 0;
|
| 167 |
|
virtual std::error_code clear() = 0;
|
167 |
|
virtual std::error_code clear() = 0;
|
| 168 |
|
|
168 |
|
|
| 169 |
|
|
169 |
|
|
| 170 |
|
|
170 |
|
|
| 171 |
|
|
171 |
|
|
| 172 |
|
Cancels any pending operations and releases signal resources.
|
172 |
|
Cancels any pending operations and releases signal resources.
|
| 173 |
|
|
173 |
|
|
| 174 |
|
|
174 |
|
|
| 175 |
|
|
175 |
|
|
| 176 |
|
/** Construct an empty signal set.
|
176 |
|
/** Construct an empty signal set.
|
| 177 |
|
|
177 |
|
|
| 178 |
|
@param ctx The execution context that will own this signal set.
|
178 |
|
@param ctx The execution context that will own this signal set.
|
| 179 |
|
|
179 |
|
|
| 180 |
|
explicit signal_set(capy::execution_context& ctx);
|
180 |
|
explicit signal_set(capy::execution_context& ctx);
|
| 181 |
|
|
181 |
|
|
| 182 |
|
/** Construct a signal set with initial signals.
|
182 |
|
/** Construct a signal set with initial signals.
|
| 183 |
|
|
183 |
|
|
| 184 |
|
@param ctx The execution context that will own this signal set.
|
184 |
|
@param ctx The execution context that will own this signal set.
|
| 185 |
|
@param signal First signal number to add.
|
185 |
|
@param signal First signal number to add.
|
| 186 |
|
@param signals Additional signal numbers to add.
|
186 |
|
@param signals Additional signal numbers to add.
|
| 187 |
|
|
187 |
|
|
| 188 |
|
@throws std::system_error Thrown on failure.
|
188 |
|
@throws std::system_error Thrown on failure.
|
| 189 |
|
|
189 |
|
|
| 190 |
|
template<std::convertible_to<int>... Signals>
|
190 |
|
template<std::convertible_to<int>... Signals>
|
| 191 |
|
signal_set(capy::execution_context& ctx, int signal, Signals... signals)
|
191 |
|
signal_set(capy::execution_context& ctx, int signal, Signals... signals)
|
| 192 |
|
|
192 |
|
|
| 193 |
|
|
193 |
|
|
| 194 |
|
auto check = [](std::error_code ec) {
|
194 |
|
auto check = [](std::error_code ec) {
|
| 195 |
|
|
195 |
|
|
| 196 |
|
throw std::system_error(ec);
|
196 |
|
throw std::system_error(ec);
|
| 197 |
|
|
197 |
|
|
| 198 |
|
|
198 |
|
|
| 199 |
|
(check(add(signals)), ...);
|
199 |
|
(check(add(signals)), ...);
|
| 200 |
|
|
200 |
|
|
| 201 |
|
|
201 |
|
|
| 202 |
|
|
202 |
|
|
| 203 |
|
|
203 |
|
|
| 204 |
|
Transfers ownership of the signal set resources.
|
204 |
|
Transfers ownership of the signal set resources.
|
| 205 |
|
|
205 |
|
|
| 206 |
|
@param other The signal set to move from.
|
206 |
|
@param other The signal set to move from.
|
| 207 |
|
|
207 |
|
|
| 208 |
|
signal_set(signal_set&& other) noexcept;
|
208 |
|
signal_set(signal_set&& other) noexcept;
|
| 209 |
|
|
209 |
|
|
| 210 |
|
/** Move assignment operator.
|
210 |
|
/** Move assignment operator.
|
| 211 |
|
|
211 |
|
|
| 212 |
|
Closes any existing signal set and transfers ownership.
|
212 |
|
Closes any existing signal set and transfers ownership.
|
| 213 |
|
@param other The signal set to move from.
|
213 |
|
@param other The signal set to move from.
|
| 214 |
|
|
214 |
|
|
| 215 |
|
@return Reference to this signal set.
|
215 |
|
@return Reference to this signal set.
|
| 216 |
|
|
216 |
|
|
| 217 |
|
signal_set& operator=(signal_set&& other) noexcept;
|
217 |
|
signal_set& operator=(signal_set&& other) noexcept;
|
| 218 |
|
|
218 |
|
|
| 219 |
|
signal_set(signal_set const&) = delete;
|
219 |
|
signal_set(signal_set const&) = delete;
|
| 220 |
|
signal_set& operator=(signal_set const&) = delete;
|
220 |
|
signal_set& operator=(signal_set const&) = delete;
|
| 221 |
|
|
221 |
|
|
| 222 |
|
/** Add a signal to the signal set.
|
222 |
|
/** Add a signal to the signal set.
|
| 223 |
|
|
223 |
|
|
| 224 |
|
This function adds the specified signal to the set with the
|
224 |
|
This function adds the specified signal to the set with the
|
| 225 |
|
specified flags. It has no effect if the signal is already
|
225 |
|
specified flags. It has no effect if the signal is already
|
| 226 |
|
in the set with the same flags.
|
226 |
|
in the set with the same flags.
|
| 227 |
|
|
227 |
|
|
| 228 |
|
If the signal is already registered globally (by another
|
228 |
|
If the signal is already registered globally (by another
|
| 229 |
|
signal_set) and the flags differ, an error is returned
|
229 |
|
signal_set) and the flags differ, an error is returned
|
| 230 |
|
unless one of them has the `dont_care` flag.
|
230 |
|
unless one of them has the `dont_care` flag.
|
| 231 |
|
|
231 |
|
|
| 232 |
|
@param signal_number The signal to be added to the set.
|
232 |
|
@param signal_number The signal to be added to the set.
|
| 233 |
|
@param flags The flags to apply when registering the signal.
|
233 |
|
@param flags The flags to apply when registering the signal.
|
| 234 |
|
On POSIX systems, these map to sigaction() flags.
|
234 |
|
On POSIX systems, these map to sigaction() flags.
|
| 235 |
|
On Windows, flags are accepted but ignored.
|
235 |
|
On Windows, flags are accepted but ignored.
|
| 236 |
|
|
236 |
|
|
| 237 |
|
@return Success, or an error if the signal could not be added.
|
237 |
|
@return Success, or an error if the signal could not be added.
|
| 238 |
|
Returns `errc::invalid_argument` if the signal is already
|
238 |
|
Returns `errc::invalid_argument` if the signal is already
|
| 239 |
|
registered with different flags.
|
239 |
|
registered with different flags.
|
| 240 |
|
|
240 |
|
|
| 241 |
|
std::error_code add(int signal_number, flags_t flags);
|
241 |
|
std::error_code add(int signal_number, flags_t flags);
|
| 242 |
|
|
242 |
|
|
| 243 |
|
/** Add a signal to the signal set with default flags.
|
243 |
|
/** Add a signal to the signal set with default flags.
|
| 244 |
|
|
244 |
|
|
| 245 |
|
This is equivalent to calling `add(signal_number, none)`.
|
245 |
|
This is equivalent to calling `add(signal_number, none)`.
|
| 246 |
|
|
246 |
|
|
| 247 |
|
@param signal_number The signal to be added to the set.
|
247 |
|
@param signal_number The signal to be added to the set.
|
| 248 |
|
|
248 |
|
|
| 249 |
|
@return Success, or an error if the signal could not be added.
|
249 |
|
@return Success, or an error if the signal could not be added.
|
| 250 |
|
|
250 |
|
|
| 251 |
|
std::error_code add(int signal_number)
|
251 |
|
std::error_code add(int signal_number)
|
| 252 |
|
|
252 |
|
|
| 253 |
|
return add(signal_number, none);
|
253 |
|
return add(signal_number, none);
|
| 254 |
|
|
254 |
|
|
| 255 |
|
|
255 |
|
|
| 256 |
|
/** Remove a signal from the signal set.
|
256 |
|
/** Remove a signal from the signal set.
|
| 257 |
|
|
257 |
|
|
| 258 |
|
This function removes the specified signal from the set. It has
|
258 |
|
This function removes the specified signal from the set. It has
|
| 259 |
|
no effect if the signal is not in the set.
|
259 |
|
no effect if the signal is not in the set.
|
| 260 |
|
|
260 |
|
|
| 261 |
|
@param signal_number The signal to be removed from the set.
|
261 |
|
@param signal_number The signal to be removed from the set.
|
| 262 |
|
|
262 |
|
|
| 263 |
|
@return Success, or an error if the signal could not be removed.
|
263 |
|
@return Success, or an error if the signal could not be removed.
|
| 264 |
|
|
264 |
|
|
| 265 |
|
std::error_code remove(int signal_number);
|
265 |
|
std::error_code remove(int signal_number);
|
| 266 |
|
|
266 |
|
|
| 267 |
|
/** Remove all signals from the signal set.
|
267 |
|
/** Remove all signals from the signal set.
|
| 268 |
|
|
268 |
|
|
| 269 |
|
This function removes all signals from the set. It has no effect
|
269 |
|
This function removes all signals from the set. It has no effect
|
| 270 |
|
if the set is already empty.
|
270 |
|
if the set is already empty.
|
| 271 |
|
|
271 |
|
|
| 272 |
|
@return Success, or an error if resetting any signal handler fails.
|
272 |
|
@return Success, or an error if resetting any signal handler fails.
|
| 273 |
|
|
273 |
|
|
| 274 |
|
|
274 |
|
|
| 275 |
|
|
275 |
|
|
| 276 |
|
|
276 |
|
|
| 277 |
|
explicit signal_set(handle h) noexcept : io_signal_set(std::move(h)) {}
|
277 |
|
explicit signal_set(handle h) noexcept : io_signal_set(std::move(h)) {}
|
| 278 |
|
|
278 |
|
|
| 279 |
|
|
279 |
|
|
| 280 |
|
void do_cancel() override;
|
280 |
|
void do_cancel() override;
|
| 281 |
|
|
281 |
|
|
| 282 |
|
implementation& get() const noexcept
|
282 |
|
implementation& get() const noexcept
|
| 283 |
|
|
283 |
|
|
| 284 |
|
return *static_cast<implementation*>(h_.get());
|
284 |
|
return *static_cast<implementation*>(h_.get());
|
| 285 |
|
|
285 |
|
|
| 286 |
|
|
286 |
|
|
| 287 |
|
|
287 |
|
|
| 288 |
|
} // namespace boost::corosio
|
288 |
|
} // namespace boost::corosio
|
| 289 |
|
|
289 |
|
|
| 290 |
|
|
290 |
|
|