Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Task management functions. |
| 3 | * |
Willy Tarreau | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 4 | * Copyright 2000-2009 Willy Tarreau <w@1wt.eu> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 5 | * |
| 6 | * This program is free software; you can redistribute it and/or |
| 7 | * modify it under the terms of the GNU General Public License |
| 8 | * as published by the Free Software Foundation; either version |
| 9 | * 2 of the License, or (at your option) any later version. |
| 10 | * |
| 11 | */ |
| 12 | |
Willy Tarreau | 87bed62 | 2009-03-08 22:25:28 +0100 | [diff] [blame] | 13 | #include <string.h> |
| 14 | |
Willy Tarreau | 2dd0d47 | 2006-06-29 17:53:05 +0200 | [diff] [blame] | 15 | #include <common/config.h> |
Willy Tarreau | c6ca1a0 | 2007-05-13 19:43:47 +0200 | [diff] [blame] | 16 | #include <common/memory.h> |
Willy Tarreau | 2dd0d47 | 2006-06-29 17:53:05 +0200 | [diff] [blame] | 17 | #include <common/mini-clist.h> |
Willy Tarreau | 96bcfd7 | 2007-04-29 10:41:56 +0200 | [diff] [blame] | 18 | #include <common/standard.h> |
Willy Tarreau | a6a6a93 | 2007-04-28 22:40:08 +0200 | [diff] [blame] | 19 | #include <common/time.h> |
Willy Tarreau | 45cb4fb | 2009-10-26 21:10:04 +0100 | [diff] [blame] | 20 | #include <eb32tree.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 21 | |
Willy Tarreau | d825eef | 2007-05-12 22:35:00 +0200 | [diff] [blame] | 22 | #include <proto/proxy.h> |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 23 | #include <proto/stream.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 24 | #include <proto/task.h> |
| 25 | |
Willy Tarreau | 9789f7b | 2008-06-24 08:17:16 +0200 | [diff] [blame] | 26 | struct pool_head *pool2_task; |
Willy Tarreau | 96bcfd7 | 2007-04-29 10:41:56 +0200 | [diff] [blame] | 27 | |
Thierry FOURNIER | d697596 | 2017-07-12 14:31:10 +0200 | [diff] [blame] | 28 | /* This is the memory pool containing all the signal structs. These |
| 29 | * struct are used to store each requiered signal between two tasks. |
| 30 | */ |
| 31 | struct pool_head *pool2_notification; |
| 32 | |
Willy Tarreau | a461318 | 2009-03-21 18:13:21 +0100 | [diff] [blame] | 33 | unsigned int nb_tasks = 0; |
Christopher Faulet | 34c5cc9 | 2016-12-06 09:15:30 +0100 | [diff] [blame] | 34 | unsigned int tasks_run_queue = 0; |
| 35 | unsigned int tasks_run_queue_cur = 0; /* copy of the run queue size */ |
Willy Tarreau | c7bdf09 | 2009-03-21 18:33:52 +0100 | [diff] [blame] | 36 | unsigned int nb_tasks_cur = 0; /* copy of the tasks count */ |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 37 | unsigned int niced_tasks = 0; /* number of niced tasks in the run queue */ |
Emeric Brun | 0194897 | 2017-03-30 15:37:25 +0200 | [diff] [blame] | 38 | |
Willy Tarreau | 964c936 | 2007-01-07 00:38:00 +0100 | [diff] [blame] | 39 | |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 40 | static struct eb_root timers; /* sorted timers tree */ |
| 41 | static struct eb_root rqueue; /* tree constituting the run queue */ |
| 42 | static unsigned int rqueue_ticks; /* insertion count */ |
Willy Tarreau | 9789f7b | 2008-06-24 08:17:16 +0200 | [diff] [blame] | 43 | |
Willy Tarreau | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 44 | /* Puts the task <t> in run queue at a position depending on t->nice. <t> is |
| 45 | * returned. The nice value assigns boosts in 32th of the run queue size. A |
Christopher Faulet | 34c5cc9 | 2016-12-06 09:15:30 +0100 | [diff] [blame] | 46 | * nice value of -1024 sets the task to -tasks_run_queue*32, while a nice value |
| 47 | * of 1024 sets the task to tasks_run_queue*32. The state flags are cleared, so |
| 48 | * the caller will have to set its flags after this call. |
Willy Tarreau | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 49 | * The task must not already be in the run queue. If unsure, use the safer |
| 50 | * task_wakeup() function. |
Willy Tarreau | 91e9993 | 2008-06-30 07:51:00 +0200 | [diff] [blame] | 51 | */ |
Willy Tarreau | 4df8206 | 2008-08-29 15:26:14 +0200 | [diff] [blame] | 52 | struct task *__task_wakeup(struct task *t) |
Willy Tarreau | e33aece | 2007-04-30 13:15:14 +0200 | [diff] [blame] | 53 | { |
Christopher Faulet | 34c5cc9 | 2016-12-06 09:15:30 +0100 | [diff] [blame] | 54 | tasks_run_queue++; |
Willy Tarreau | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 55 | t->rq.key = ++rqueue_ticks; |
Willy Tarreau | 91e9993 | 2008-06-30 07:51:00 +0200 | [diff] [blame] | 56 | |
| 57 | if (likely(t->nice)) { |
| 58 | int offset; |
| 59 | |
| 60 | niced_tasks++; |
| 61 | if (likely(t->nice > 0)) |
Christopher Faulet | 34c5cc9 | 2016-12-06 09:15:30 +0100 | [diff] [blame] | 62 | offset = (unsigned)((tasks_run_queue * (unsigned int)t->nice) / 32U); |
Willy Tarreau | 91e9993 | 2008-06-30 07:51:00 +0200 | [diff] [blame] | 63 | else |
Christopher Faulet | 34c5cc9 | 2016-12-06 09:15:30 +0100 | [diff] [blame] | 64 | offset = -(unsigned)((tasks_run_queue * (unsigned int)-t->nice) / 32U); |
Willy Tarreau | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 65 | t->rq.key += offset; |
Willy Tarreau | 91e9993 | 2008-06-30 07:51:00 +0200 | [diff] [blame] | 66 | } |
| 67 | |
Emeric Brun | 0194897 | 2017-03-30 15:37:25 +0200 | [diff] [blame] | 68 | /* reset flag to pending ones |
| 69 | * Note: __task_wakeup must not be called |
| 70 | * if task is running |
| 71 | */ |
| 72 | t->state = t->pending_state; |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 73 | eb32_insert(&rqueue, &t->rq); |
Willy Tarreau | 58b458d | 2008-06-29 22:40:23 +0200 | [diff] [blame] | 74 | return t; |
Willy Tarreau | e33aece | 2007-04-30 13:15:14 +0200 | [diff] [blame] | 75 | } |
Willy Tarreau | d825eef | 2007-05-12 22:35:00 +0200 | [diff] [blame] | 76 | |
Willy Tarreau | 96bcfd7 | 2007-04-29 10:41:56 +0200 | [diff] [blame] | 77 | /* |
Willy Tarreau | 531cf0c | 2009-03-08 16:35:27 +0100 | [diff] [blame] | 78 | * __task_queue() |
Willy Tarreau | 96bcfd7 | 2007-04-29 10:41:56 +0200 | [diff] [blame] | 79 | * |
| 80 | * Inserts a task into the wait queue at the position given by its expiration |
Willy Tarreau | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 81 | * date. It does not matter if the task was already in the wait queue or not, |
Willy Tarreau | 531cf0c | 2009-03-08 16:35:27 +0100 | [diff] [blame] | 82 | * as it will be unlinked. The task must not have an infinite expiration timer. |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 83 | * Last, tasks must not be queued further than the end of the tree, which is |
| 84 | * between <now_ms> and <now_ms> + 2^31 ms (now+24days in 32bit). |
Willy Tarreau | 531cf0c | 2009-03-08 16:35:27 +0100 | [diff] [blame] | 85 | * |
| 86 | * This function should not be used directly, it is meant to be called by the |
| 87 | * inline version of task_queue() which performs a few cheap preliminary tests |
| 88 | * before deciding to call __task_queue(). |
Willy Tarreau | 96bcfd7 | 2007-04-29 10:41:56 +0200 | [diff] [blame] | 89 | */ |
Willy Tarreau | 531cf0c | 2009-03-08 16:35:27 +0100 | [diff] [blame] | 90 | void __task_queue(struct task *task) |
Willy Tarreau | 964c936 | 2007-01-07 00:38:00 +0100 | [diff] [blame] | 91 | { |
Willy Tarreau | 531cf0c | 2009-03-08 16:35:27 +0100 | [diff] [blame] | 92 | if (likely(task_in_wq(task))) |
Willy Tarreau | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 93 | __task_unlink_wq(task); |
Willy Tarreau | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 94 | |
| 95 | /* the task is not in the queue now */ |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 96 | task->wq.key = task->expire; |
Willy Tarreau | 28c41a4 | 2008-06-29 17:00:59 +0200 | [diff] [blame] | 97 | #ifdef DEBUG_CHECK_INVALID_EXPIRATION_DATES |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 98 | if (tick_is_lt(task->wq.key, now_ms)) |
Willy Tarreau | 28c41a4 | 2008-06-29 17:00:59 +0200 | [diff] [blame] | 99 | /* we're queuing too far away or in the past (most likely) */ |
Willy Tarreau | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 100 | return; |
Willy Tarreau | 28c41a4 | 2008-06-29 17:00:59 +0200 | [diff] [blame] | 101 | #endif |
Willy Tarreau | ce44f12 | 2008-07-05 18:16:19 +0200 | [diff] [blame] | 102 | |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 103 | eb32_insert(&timers, &task->wq); |
SaVaGe | 1d7a420 | 2009-10-06 18:53:37 +0300 | [diff] [blame] | 104 | |
Willy Tarreau | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 105 | return; |
Willy Tarreau | 964c936 | 2007-01-07 00:38:00 +0100 | [diff] [blame] | 106 | } |
| 107 | |
Willy Tarreau | 96bcfd7 | 2007-04-29 10:41:56 +0200 | [diff] [blame] | 108 | /* |
Willy Tarreau | 9789f7b | 2008-06-24 08:17:16 +0200 | [diff] [blame] | 109 | * Extract all expired timers from the timer queue, and wakes up all |
Thierry FOURNIER | 9cf7c4b | 2014-12-15 13:26:01 +0100 | [diff] [blame] | 110 | * associated tasks. Returns the date of next event (or eternity). |
Willy Tarreau | 96bcfd7 | 2007-04-29 10:41:56 +0200 | [diff] [blame] | 111 | */ |
Thierry FOURNIER | 9cf7c4b | 2014-12-15 13:26:01 +0100 | [diff] [blame] | 112 | int wake_expired_tasks() |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 113 | { |
Willy Tarreau | 96bcfd7 | 2007-04-29 10:41:56 +0200 | [diff] [blame] | 114 | struct task *task; |
Willy Tarreau | 9789f7b | 2008-06-24 08:17:16 +0200 | [diff] [blame] | 115 | struct eb32_node *eb; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 116 | |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 117 | while (1) { |
Emeric Brun | 0194897 | 2017-03-30 15:37:25 +0200 | [diff] [blame] | 118 | eb = eb32_lookup_ge(&timers, now_ms - TIMER_LOOK_BACK); |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 119 | if (unlikely(!eb)) { |
| 120 | /* we might have reached the end of the tree, typically because |
| 121 | * <now_ms> is in the first half and we're first scanning the last |
| 122 | * half. Let's loop back to the beginning of the tree now. |
| 123 | */ |
| 124 | eb = eb32_first(&timers); |
| 125 | if (likely(!eb)) |
| 126 | break; |
| 127 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 128 | |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 129 | if (likely(tick_is_lt(now_ms, eb->key))) { |
| 130 | /* timer not expired yet, revisit it later */ |
Thierry FOURNIER | 9cf7c4b | 2014-12-15 13:26:01 +0100 | [diff] [blame] | 131 | return eb->key; |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 132 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 133 | |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 134 | /* timer looks expired, detach it from the queue */ |
| 135 | task = eb32_entry(eb, struct task, wq); |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 136 | __task_unlink_wq(task); |
Willy Tarreau | 4136522 | 2009-03-08 07:46:27 +0100 | [diff] [blame] | 137 | |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 138 | /* It is possible that this task was left at an earlier place in the |
| 139 | * tree because a recent call to task_queue() has not moved it. This |
| 140 | * happens when the new expiration date is later than the old one. |
| 141 | * Since it is very unlikely that we reach a timeout anyway, it's a |
| 142 | * lot cheaper to proceed like this because we almost never update |
| 143 | * the tree. We may also find disabled expiration dates there. Since |
| 144 | * we have detached the task from the tree, we simply call task_queue |
Willy Tarreau | 814c978 | 2009-07-14 23:48:55 +0200 | [diff] [blame] | 145 | * to take care of this. Note that we might occasionally requeue it at |
| 146 | * the same place, before <eb>, so we have to check if this happens, |
| 147 | * and adjust <eb>, otherwise we may skip it which is not what we want. |
Willy Tarreau | 34e98ea | 2009-08-09 09:09:54 +0200 | [diff] [blame] | 148 | * We may also not requeue the task (and not point eb at it) if its |
| 149 | * expiration time is not set. |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 150 | */ |
| 151 | if (!tick_is_expired(task->expire, now_ms)) { |
Willy Tarreau | 34e98ea | 2009-08-09 09:09:54 +0200 | [diff] [blame] | 152 | if (!tick_isset(task->expire)) |
| 153 | continue; |
| 154 | __task_queue(task); |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 155 | continue; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 156 | } |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 157 | task_wakeup(task, TASK_WOKEN_TIMER); |
| 158 | } |
Willy Tarreau | 9789f7b | 2008-06-24 08:17:16 +0200 | [diff] [blame] | 159 | |
Thierry FOURNIER | 9cf7c4b | 2014-12-15 13:26:01 +0100 | [diff] [blame] | 160 | /* No task is expired */ |
| 161 | return TICK_ETERNITY; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 162 | } |
| 163 | |
Willy Tarreau | 58b458d | 2008-06-29 22:40:23 +0200 | [diff] [blame] | 164 | /* The run queue is chronologically sorted in a tree. An insertion counter is |
| 165 | * used to assign a position to each task. This counter may be combined with |
| 166 | * other variables (eg: nice value) to set the final position in the tree. The |
| 167 | * counter may wrap without a problem, of course. We then limit the number of |
Willy Tarreau | 91e9993 | 2008-06-30 07:51:00 +0200 | [diff] [blame] | 168 | * tasks processed at once to 1/4 of the number of tasks in the queue, and to |
| 169 | * 200 max in any case, so that general latency remains low and so that task |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 170 | * positions have a chance to be considered. |
Willy Tarreau | 58b458d | 2008-06-29 22:40:23 +0200 | [diff] [blame] | 171 | * |
| 172 | * The function adjusts <next> if a new event is closer. |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 173 | */ |
Thierry FOURNIER | 9cf7c4b | 2014-12-15 13:26:01 +0100 | [diff] [blame] | 174 | void process_runnable_tasks() |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 175 | { |
Willy Tarreau | 964c936 | 2007-01-07 00:38:00 +0100 | [diff] [blame] | 176 | struct task *t; |
Emeric Brun | 0194897 | 2017-03-30 15:37:25 +0200 | [diff] [blame] | 177 | int i; |
| 178 | int max_processed; |
| 179 | struct eb32_node *rq_next; |
| 180 | int rewind; |
| 181 | struct task *local_tasks[16]; |
| 182 | int local_tasks_count; |
Christopher Faulet | 34c5cc9 | 2016-12-06 09:15:30 +0100 | [diff] [blame] | 183 | tasks_run_queue_cur = tasks_run_queue; /* keep a copy for reporting */ |
Willy Tarreau | c7bdf09 | 2009-03-21 18:33:52 +0100 | [diff] [blame] | 184 | nb_tasks_cur = nb_tasks; |
Christopher Faulet | 34c5cc9 | 2016-12-06 09:15:30 +0100 | [diff] [blame] | 185 | max_processed = tasks_run_queue; |
Christopher Faulet | 34c5cc9 | 2016-12-06 09:15:30 +0100 | [diff] [blame] | 186 | if (!tasks_run_queue) |
Willy Tarreau | 98c6121 | 2011-09-10 20:08:49 +0200 | [diff] [blame] | 187 | return; |
| 188 | |
Willy Tarreau | 91e9993 | 2008-06-30 07:51:00 +0200 | [diff] [blame] | 189 | if (max_processed > 200) |
| 190 | max_processed = 200; |
| 191 | |
| 192 | if (likely(niced_tasks)) |
Willy Tarreau | 218859a | 2009-03-21 11:53:09 +0100 | [diff] [blame] | 193 | max_processed = (max_processed + 3) / 4; |
Willy Tarreau | 96bcfd7 | 2007-04-29 10:41:56 +0200 | [diff] [blame] | 194 | |
Emeric Brun | 0194897 | 2017-03-30 15:37:25 +0200 | [diff] [blame] | 195 | while (max_processed > 0) { |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 196 | /* Note: this loop is one of the fastest code path in |
| 197 | * the whole program. It should not be re-arranged |
| 198 | * without a good reason. |
| 199 | */ |
Emeric Brun | 0194897 | 2017-03-30 15:37:25 +0200 | [diff] [blame] | 200 | |
| 201 | rewind = 0; |
| 202 | rq_next = eb32_lookup_ge(&rqueue, rqueue_ticks - TIMER_LOOK_BACK); |
| 203 | if (!rq_next) { |
| 204 | /* we might have reached the end of the tree, typically because |
| 205 | * <rqueue_ticks> is in the first half and we're first scanning |
| 206 | * the last half. Let's loop back to the beginning of the tree now. |
| 207 | */ |
| 208 | rq_next = eb32_first(&rqueue); |
Willy Tarreau | 501260b | 2015-02-23 16:07:01 +0100 | [diff] [blame] | 209 | if (!rq_next) { |
Emeric Brun | 0194897 | 2017-03-30 15:37:25 +0200 | [diff] [blame] | 210 | break; |
| 211 | } |
| 212 | rewind = 1; |
| 213 | } |
| 214 | |
| 215 | local_tasks_count = 0; |
| 216 | while (local_tasks_count < 16) { |
| 217 | t = eb32_entry(rq_next, struct task, rq); |
| 218 | rq_next = eb32_next(rq_next); |
| 219 | /* detach the task from the queue */ |
| 220 | __task_unlink_rq(t); |
| 221 | t->state |= TASK_RUNNING; |
| 222 | t->pending_state = 0; |
| 223 | t->calls++; |
| 224 | local_tasks[local_tasks_count++] = t; |
| 225 | if (!rq_next) { |
| 226 | if (rewind || !(rq_next = eb32_first(&rqueue))) { |
Willy Tarreau | 501260b | 2015-02-23 16:07:01 +0100 | [diff] [blame] | 227 | break; |
Emeric Brun | 0194897 | 2017-03-30 15:37:25 +0200 | [diff] [blame] | 228 | } |
| 229 | rewind = 1; |
Willy Tarreau | 501260b | 2015-02-23 16:07:01 +0100 | [diff] [blame] | 230 | } |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 231 | } |
Willy Tarreau | 58b458d | 2008-06-29 22:40:23 +0200 | [diff] [blame] | 232 | |
Emeric Brun | 0194897 | 2017-03-30 15:37:25 +0200 | [diff] [blame] | 233 | if (!local_tasks_count) |
| 234 | break; |
Willy Tarreau | 58b458d | 2008-06-29 22:40:23 +0200 | [diff] [blame] | 235 | |
Emeric Brun | 0194897 | 2017-03-30 15:37:25 +0200 | [diff] [blame] | 236 | |
| 237 | for (i = 0; i < local_tasks_count ; i++) { |
| 238 | t = local_tasks[i]; |
| 239 | /* This is an optimisation to help the processor's branch |
| 240 | * predictor take this most common call. |
| 241 | */ |
| 242 | if (likely(t->process == process_stream)) |
| 243 | t = process_stream(t); |
| 244 | else |
| 245 | t = t->process(t); |
| 246 | local_tasks[i] = t; |
| 247 | } |
Willy Tarreau | 531cf0c | 2009-03-08 16:35:27 +0100 | [diff] [blame] | 248 | |
Emeric Brun | 0194897 | 2017-03-30 15:37:25 +0200 | [diff] [blame] | 249 | max_processed -= local_tasks_count; |
| 250 | for (i = 0; i < local_tasks_count ; i++) { |
| 251 | t = local_tasks[i]; |
| 252 | if (likely(t != NULL)) { |
| 253 | t->state &= ~TASK_RUNNING; |
| 254 | /* If there is a pending state |
| 255 | * we have to wake up the task |
| 256 | * immediatly, else we defer |
| 257 | * it into wait queue |
| 258 | */ |
| 259 | if (t->pending_state) |
| 260 | __task_wakeup(t); |
| 261 | else |
| 262 | task_queue(t); |
| 263 | } |
Willy Tarreau | 58b458d | 2008-06-29 22:40:23 +0200 | [diff] [blame] | 264 | } |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 265 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 266 | } |
| 267 | |
Willy Tarreau | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 268 | /* perform minimal intializations, report 0 in case of error, 1 if OK. */ |
| 269 | int init_task() |
| 270 | { |
| 271 | memset(&timers, 0, sizeof(timers)); |
| 272 | memset(&rqueue, 0, sizeof(rqueue)); |
| 273 | pool2_task = create_pool("task", sizeof(struct task), MEM_F_SHARED); |
Thierry FOURNIER | d697596 | 2017-07-12 14:31:10 +0200 | [diff] [blame] | 274 | if (!pool2_task) |
| 275 | return 0; |
| 276 | pool2_notification = create_pool("notification", sizeof(struct notification), MEM_F_SHARED); |
| 277 | if (!pool2_notification) |
| 278 | return 0; |
| 279 | return 1; |
Willy Tarreau | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 280 | } |
| 281 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 282 | /* |
| 283 | * Local variables: |
| 284 | * c-indent-level: 8 |
| 285 | * c-basic-offset: 8 |
| 286 | * End: |
| 287 | */ |