From 1e320e21492d3c09bae269b10d8faf0d0d131bb9 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Fri, 13 Sep 2024 15:02:00 -0400 Subject: Fix doxygen comments --- include/multiprocessing.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/multiprocessing.h b/include/multiprocessing.h index e4ddfdf..4e89722 100644 --- a/include/multiprocessing.h +++ b/include/multiprocessing.h @@ -28,13 +28,13 @@ struct MultiProcessingPool { char log_root[PATH_MAX]; ///< Base directory to store stderr/stdout log files }; -///!< Maximum number of multiprocessing tasks STASIS can execute +/// Maximum number of multiprocessing tasks STASIS can execute #define MP_POOL_TASK_MAX 1000 -///!< Value signifies a process is unused or finished executing +/// Value signifies a process is unused or finished executing #define MP_POOL_PID_UNUSED 0 -// Option flags for mp_pool_join() +/// Option flags for mp_pool_join() #define MP_POOL_FAIL_FAST 1 << 1 /** -- cgit