From: Francis Dupont Date: Mon, 4 Nov 2019 14:53:07 +0000 (+0100) Subject: [970-implement-multi-threading-critical-section] Finished first version X-Git-Tag: Kea-1.7.2~87 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6fe1cd7fb79f5ed6bef504daa98b333f450d668c;p=thirdparty%2Fkea.git [970-implement-multi-threading-critical-section] Finished first version --- diff --git a/src/lib/dhcpsrv/multi_threading_utils.h b/src/lib/dhcpsrv/multi_threading_utils.h index 3245244d48..0c5e66b975 100644 --- a/src/lib/dhcpsrv/multi_threading_utils.h +++ b/src/lib/dhcpsrv/multi_threading_utils.h @@ -16,11 +16,11 @@ namespace dhcp { /// When called from a thread of the pool it can deadlock. /// @brief Function stopping and joining all threads of the pool. -/// #throw isc::NotImplemented until is implemented. +/// @throw isc::NotImplemented until is implemented. void stop_pkt_processing(); /// @brief Function (re)starting threads of the pool. -/// #throw isc::NotImplemented until is implemented. +/// @throw isc::NotImplemented until is implemented. void start_pkt_processing(); /// @brief RAII class creating a critical section.