Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions include/boost/asio/detail/socket_types.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -412,7 +412,9 @@ const int max_iov_len = IOV_MAX;
// POSIX platforms are not required to define IOV_MAX.
const int max_iov_len = 16;
# endif
# if defined(SA_RESTART)
# define BOOST_ASIO_OS_DEF_SA_RESTART SA_RESTART
# endif
# define BOOST_ASIO_OS_DEF_SA_NOCLDSTOP SA_NOCLDSTOP
# if defined(SA_NOCLDWAIT)
# define BOOST_ASIO_OS_DEF_SA_NOCLDWAIT SA_NOCLDWAIT
Expand Down
2 changes: 2 additions & 0 deletions include/boost/asio/signal_set_base.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,9 @@ class signal_set_base
enum class flags : int
{
none = 0,
#if defined(SA_RESTART)
restart = BOOST_ASIO_OS_DEF(SA_RESTART),
#endif
no_child_stop = BOOST_ASIO_OS_DEF(SA_NOCLDSTOP),
no_child_wait = BOOST_ASIO_OS_DEF(SA_NOCLDWAIT),
dont_care = -1
Expand Down