Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

This is the documentation for an old version of boost. Click here for the latest Boost documentation.
PrevUpHomeNext

signal_set::signal_set

Construct a signal set without adding any signals.

explicit signal_set(
    boost::asio::io_context & io_context);
  » more...

Construct a signal set and add one signal.

signal_set(
    boost::asio::io_context & io_context,
    int signal_number_1);
  » more...

Construct a signal set and add two signals.

signal_set(
    boost::asio::io_context & io_context,
    int signal_number_1,
    int signal_number_2);
  » more...

Construct a signal set and add three signals.

signal_set(
    boost::asio::io_context & io_context,
    int signal_number_1,
    int signal_number_2,
    int signal_number_3);
  » more...

PrevUpHomeNext