diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-09-26 09:56:25 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-09-26 09:56:25 -0400 |
commit | 3e610e935858995f411df7bb0a77e2efeeae3d66 (patch) | |
tree | 03cd872c7d756b5c2d3165d83afc4fd15676c86c /include | |
parent | 71b45aa6ba60a651185cf47792fbf61b7e2b07a8 (diff) | |
download | stasis-3e610e935858995f411df7bb0a77e2efeeae3d66.tar.gz |
Implement cmd and working_dir
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 aac6d18..d4213d2 100644 --- a/include/multiprocessing.h +++ b/include/multiprocessing.h @@ -95,7 +95,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_pool_task(struct MultiProcessingPool *pool, const char *ident, char *cmd); +struct MultiProcessingTask *mp_pool_task(struct MultiProcessingPool *pool, const char *ident, char *working_dir, char *cmd); /** * Execute all tasks in a pool |