From: Razvan Becheriu Date: Sat, 7 Mar 2020 18:21:27 +0000 (+0200) Subject: [#1016] added doxygen X-Git-Tag: Kea-1.7.6~72 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d6353e93170dd55be04af19fe4e1913871a93016;p=thirdparty%2Fkea.git [#1016] added doxygen --- diff --git a/src/lib/util/multi_threading_mgr.h b/src/lib/util/multi_threading_mgr.h index baced1ab61..a130907949 100644 --- a/src/lib/util/multi_threading_mgr.h +++ b/src/lib/util/multi_threading_mgr.h @@ -71,6 +71,7 @@ public: /// When entering @ref MultiThreadingCriticalSection, increment internal /// counter so that any configuration change that might start the packet /// thread pool is delayed until exiting the respective section. + /// If the internal counter is 0, then stop the thread pool. void enterCriticalSection(); /// @brief Exit critical section. @@ -78,6 +79,7 @@ public: /// When exiting @ref MultiThreadingCriticalSection, decrement internal /// counter so that the packet thread pool can be started according to the /// new configuration. + /// If the internal counter is 0, then start the thread pool. void exitCriticalSection(); /// @brief Is in critical section flag.