aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2024-09-13 15:02:00 -0400
committerJoseph Hunkeler <jhunkeler@gmail.com>2024-09-18 23:07:13 -0400
commit1e320e21492d3c09bae269b10d8faf0d0d131bb9 (patch)
tree8920fcbe50672dc20ae9d9335321186bb6dbb51f /include
parent63cf3148cc3f60edf5c604a562ec95b40b8cb010 (diff)
downloadstasis-1e320e21492d3c09bae269b10d8faf0d0d131bb9.tar.gz
Fix doxygen comments
Diffstat (limited to 'include')
-rw-r--r--include/multiprocessing.h6
1 files 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
/**