From: Joseph Herlant Date: Thu, 15 Nov 2018 22:19:23 +0000 (-0800) Subject: CLEANUP: Fix typos in the task subsystem X-Git-Tag: v1.9-dev7~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cf92b6d3327bfc07032d11f08e34ab101e0f6584;p=thirdparty%2Fhaproxy.git CLEANUP: Fix typos in the task subsystem Fix typos in the code comments of the task subsystem. --- diff --git a/src/task.c b/src/task.c index 8e4da933d4..779dbf5d88 100644 --- a/src/task.c +++ b/src/task.c @@ -29,7 +29,7 @@ struct pool_head *pool_head_task; struct pool_head *pool_head_tasklet; /* This is the memory pool containing all the signal structs. These - * struct are used to store each requiered signal between two tasks. + * struct are used to store each required signal between two tasks. */ struct pool_head *pool_head_notification; @@ -429,7 +429,7 @@ void process_runnable_tasks() } curr_task = NULL; /* If there is a pending state we have to wake up the task - * immediatly, else we defer it into wait queue + * immediately, else we defer it into wait queue */ if (t != NULL) { state = HA_ATOMIC_AND(&t->state, ~TASK_RUNNING);