Parcourir la source

[master] Removed spurious io in util::io from doxygen comments (reviewed by jabber)

Francis Dupont il y a 9 ans
Parent
commit
0709f8ea3e
2 fichiers modifiés avec 8 ajouts et 8 suppressions
  1. 2 2
      src/lib/util/signal_set.cc
  2. 6 6
      src/lib/util/signal_set.h

+ 2 - 2
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.

+ 6 - 6
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<int> SigIntList;
 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;
@@ -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.
     ///