aboutsummaryrefslogtreecommitdiff
path: root/src/delivery.c
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2024-09-18 10:04:21 -0400
committerJoseph Hunkeler <jhunkeler@gmail.com>2024-09-18 23:08:04 -0400
commit8b47235f7c81e04fa5efef492974509789f40273 (patch)
tree19dba6bed0ec155c18062dfa2a19789a87e4adcb /src/delivery.c
parent4efce32c6efcb98e3d4eda4886a75872aff6fff9 (diff)
downloadstasis-8b47235f7c81e04fa5efef492974509789f40273.tar.gz
Rename mp_task to mp_pool_task
Diffstat (limited to 'src/delivery.c')
-rw-r--r--src/delivery.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/delivery.c b/src/delivery.c
index c31a4dd..aba266b 100644
--- a/src/delivery.c
+++ b/src/delivery.c
@@ -1819,7 +1819,7 @@ void delivery_tests_run(struct Delivery *ctx) {
}
sprintf(runner_cmd, runner_cmd_fmt, cmd);
- task = mp_task(pool, test->name, runner_cmd);
+ task = mp_pool_task(pool, test->name, runner_cmd);
if (!task) {
SYSERROR("Failed to add task to %s pool: %s", pool_name, runner_cmd);
popd();
@@ -1872,7 +1872,7 @@ void delivery_tests_run(struct Delivery *ctx) {
char runner_cmd[0xFFFF] = {0};
sprintf(runner_cmd, runner_cmd_fmt, cmd);
- task = mp_task(pool, test->name, runner_cmd);
+ task = mp_pool_task(pool, test->name, runner_cmd);
if (!task) {
SYSERROR("Failed to add task %s to setup pool: %s", test->name, runner_cmd);
popd();