-// Copyright (C) 2014 Internet Systems Consortium, Inc. ("ISC")
+// Copyright (C) 2014, 2015 Internet Systems Consortium, Inc. ("ISC")
//
// Permission to use, copy, modify, and/or distribute this software for any
// purpose with or without fee is hereby granted, provided that the above
return (signal_states);
}
-/// @brief Internal signal handler for @c isc::util::io::SignalSet class.
+/// @brief Internal signal handler for @c isc::util::SignalSet class.
///
/// This handler catches all registered signals. When a signal arrives it
/// passes the signal to invokeOnReceiptHandler for "on-receipt" processing.
-// Copyright (C) 2014 Internet Systems Consortium, Inc. ("ISC")
+// Copyright (C) 2014, 2015 Internet Systems Consortium, Inc. ("ISC")
//
// Permission to use, copy, modify, and/or distribute this software for any
// purpose with or without fee is hereby granted, provided that the above
namespace isc {
namespace util {
-/// @brief Exception thrown when the @c isc::util::io::SignalSet class
+/// @brief Exception thrown when the @c isc::util::SignalSet class
/// experiences an error.
class SignalSetError : public Exception {
public:
typedef boost::shared_ptr<SigIntList> SigIntListPtr;
-/// @brief Forward declaration to the @c isc::util::io::SignalSet.
+/// @brief Forward declaration to the @c isc::util::SignalSet.
class SignalSet;
-/// @brief Pointer to the @c isc::util::io::SignalSet.
+/// @brief Pointer to the @c isc::util::SignalSet.
typedef boost::shared_ptr<SignalSet> SignalSetPtr;
/// @brief Pointer to the signal handling function.
typedef boost::function<void(int signum)> SignalHandler;
/// @brief Uninstalls all signals.
///
- /// This function calls @c isc::util::io::SignalSet::remove for each
+ /// This function calls @c isc::util::SignalSet::remove for each
/// installed signal.
void clear();
/// @brief Invokes the onreceipt handler if it exists
///
- /// This static method is used by @c isc::util::io::SignalSet class to
+ /// This static method is used by @c isc::util::SignalSet class to
/// invoke the registered handler (if one) immediately upon receipt of
/// a registered signal.
///