diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-09-18 10:04:21 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-09-18 23:08:04 -0400 |
commit | 8b47235f7c81e04fa5efef492974509789f40273 (patch) | |
tree | 19dba6bed0ec155c18062dfa2a19789a87e4adcb /include | |
parent | 4efce32c6efcb98e3d4eda4886a75872aff6fff9 (diff) | |
download | stasis-8b47235f7c81e04fa5efef492974509789f40273.tar.gz |
Rename mp_task to mp_pool_task
Diffstat (limited to 'include')
-rw-r--r-- | include/multiprocessing.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/multiprocessing.h b/include/multiprocessing.h index 2356403..2db33df 100644 --- a/include/multiprocessing.h +++ b/include/multiprocessing.h @@ -94,7 +94,7 @@ struct MultiProcessingPool *mp_pool_init(const char *ident, const char *log_root * @return pointer to MultiProcessingTask structure * @return NULL on error */ -struct MultiProcessingTask *mp_task(struct MultiProcessingPool *pool, const char *ident, char *cmd); +struct MultiProcessingTask *mp_pool_task(struct MultiProcessingPool *pool, const char *ident, char *cmd); /** * Execute all tasks in a pool |