From: Francis Dupont Date: Thu, 2 Jul 2015 12:46:46 +0000 (+0200) Subject: [master] Removed spurious io in util::io from doxygen comments (reviewed by jabber) X-Git-Tag: trac3752_base X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0709f8ea3e68c2688d899bbdde37ea71090e350f;p=thirdparty%2Fkea.git [master] Removed spurious io in util::io from doxygen comments (reviewed by jabber) --- diff --git a/src/lib/util/signal_set.cc b/src/lib/util/signal_set.cc index 33243dc51c..672a6b5b7c 100644 --- a/src/lib/util/signal_set.cc +++ b/src/lib/util/signal_set.cc @@ -1,4 +1,4 @@ -// 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 @@ -50,7 +50,7 @@ SigIntListPtr getSignalStates() { 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. diff --git a/src/lib/util/signal_set.h b/src/lib/util/signal_set.h index 171a85a439..81445d3592 100644 --- a/src/lib/util/signal_set.h +++ b/src/lib/util/signal_set.h @@ -1,4 +1,4 @@ -// 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 @@ -26,7 +26,7 @@ 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: @@ -46,9 +46,9 @@ typedef std::list SigIntList; typedef boost::shared_ptr 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 SignalSetPtr; /// @brief Pointer to the signal handling function. typedef boost::function SignalHandler; @@ -134,7 +134,7 @@ public: /// @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(); @@ -176,7 +176,7 @@ public: /// @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. ///