diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-09-13 15:02:00 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-09-18 23:07:13 -0400 |
commit | 1e320e21492d3c09bae269b10d8faf0d0d131bb9 (patch) | |
tree | 8920fcbe50672dc20ae9d9335321186bb6dbb51f | |
parent | 63cf3148cc3f60edf5c604a562ec95b40b8cb010 (diff) | |
download | stasis-1e320e21492d3c09bae269b10d8faf0d0d131bb9.tar.gz |
Fix doxygen comments
-rw-r--r-- | include/multiprocessing.h | 6 |
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 /** |