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 | 531cf0c | 2009-03-08 16:35:27 +0100 | [diff] [blame] | 23 | #include <proto/session.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 | |
Willy Tarreau | a461318 | 2009-03-21 18:13:21 +0100 | [diff] [blame] | 28 | unsigned int nb_tasks = 0; |
Willy Tarreau | 58b458d | 2008-06-29 22:40:23 +0200 | [diff] [blame] | 29 | unsigned int run_queue = 0; |
Willy Tarreau | c7bdf09 | 2009-03-21 18:33:52 +0100 | [diff] [blame] | 30 | unsigned int run_queue_cur = 0; /* copy of the run queue size */ |
| 31 | unsigned int nb_tasks_cur = 0; /* copy of the tasks count */ |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 32 | unsigned int niced_tasks = 0; /* number of niced tasks in the run queue */ |
Willy Tarreau | 26ca34e | 2009-03-21 12:51:40 +0100 | [diff] [blame] | 33 | struct eb32_node *last_timer = NULL; /* optimization: last queued timer */ |
Willy Tarreau | 501260b | 2015-02-23 16:07:01 +0100 | [diff] [blame] | 34 | struct eb32_node *rq_next = NULL; /* optimization: next task except if delete/insert */ |
Willy Tarreau | 964c936 | 2007-01-07 00:38:00 +0100 | [diff] [blame] | 35 | |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 36 | static struct eb_root timers; /* sorted timers tree */ |
| 37 | static struct eb_root rqueue; /* tree constituting the run queue */ |
| 38 | static unsigned int rqueue_ticks; /* insertion count */ |
Willy Tarreau | 9789f7b | 2008-06-24 08:17:16 +0200 | [diff] [blame] | 39 | |
Willy Tarreau | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 40 | /* Puts the task <t> in run queue at a position depending on t->nice. <t> is |
| 41 | * returned. The nice value assigns boosts in 32th of the run queue size. A |
| 42 | * nice value of -1024 sets the task to -run_queue*32, while a nice value of |
| 43 | * 1024 sets the task to run_queue*32. The state flags are cleared, so the |
| 44 | * caller will have to set its flags after this call. |
| 45 | * The task must not already be in the run queue. If unsure, use the safer |
| 46 | * task_wakeup() function. |
Willy Tarreau | 91e9993 | 2008-06-30 07:51:00 +0200 | [diff] [blame] | 47 | */ |
Willy Tarreau | 4df8206 | 2008-08-29 15:26:14 +0200 | [diff] [blame] | 48 | struct task *__task_wakeup(struct task *t) |
Willy Tarreau | e33aece | 2007-04-30 13:15:14 +0200 | [diff] [blame] | 49 | { |
Willy Tarreau | 58b458d | 2008-06-29 22:40:23 +0200 | [diff] [blame] | 50 | run_queue++; |
Willy Tarreau | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 51 | t->rq.key = ++rqueue_ticks; |
Willy Tarreau | 91e9993 | 2008-06-30 07:51:00 +0200 | [diff] [blame] | 52 | |
| 53 | if (likely(t->nice)) { |
| 54 | int offset; |
| 55 | |
| 56 | niced_tasks++; |
| 57 | if (likely(t->nice > 0)) |
| 58 | offset = (unsigned)((run_queue * (unsigned int)t->nice) / 32U); |
| 59 | else |
| 60 | offset = -(unsigned)((run_queue * (unsigned int)-t->nice) / 32U); |
Willy Tarreau | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 61 | t->rq.key += offset; |
Willy Tarreau | 91e9993 | 2008-06-30 07:51:00 +0200 | [diff] [blame] | 62 | } |
| 63 | |
Willy Tarreau | fdccded | 2008-08-29 18:19:04 +0200 | [diff] [blame] | 64 | /* clear state flags at the same time */ |
Willy Tarreau | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 65 | t->state &= ~TASK_WOKEN_ANY; |
Willy Tarreau | 58b458d | 2008-06-29 22:40:23 +0200 | [diff] [blame] | 66 | |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 67 | eb32_insert(&rqueue, &t->rq); |
Willy Tarreau | 58b458d | 2008-06-29 22:40:23 +0200 | [diff] [blame] | 68 | return t; |
Willy Tarreau | e33aece | 2007-04-30 13:15:14 +0200 | [diff] [blame] | 69 | } |
Willy Tarreau | d825eef | 2007-05-12 22:35:00 +0200 | [diff] [blame] | 70 | |
Willy Tarreau | 96bcfd7 | 2007-04-29 10:41:56 +0200 | [diff] [blame] | 71 | /* |
Willy Tarreau | 531cf0c | 2009-03-08 16:35:27 +0100 | [diff] [blame] | 72 | * __task_queue() |
Willy Tarreau | 96bcfd7 | 2007-04-29 10:41:56 +0200 | [diff] [blame] | 73 | * |
| 74 | * 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] | 75 | * 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] | 76 | * 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] | 77 | * Last, tasks must not be queued further than the end of the tree, which is |
| 78 | * 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] | 79 | * |
| 80 | * This function should not be used directly, it is meant to be called by the |
| 81 | * inline version of task_queue() which performs a few cheap preliminary tests |
| 82 | * before deciding to call __task_queue(). |
Willy Tarreau | 96bcfd7 | 2007-04-29 10:41:56 +0200 | [diff] [blame] | 83 | */ |
Willy Tarreau | 531cf0c | 2009-03-08 16:35:27 +0100 | [diff] [blame] | 84 | void __task_queue(struct task *task) |
Willy Tarreau | 964c936 | 2007-01-07 00:38:00 +0100 | [diff] [blame] | 85 | { |
Willy Tarreau | 531cf0c | 2009-03-08 16:35:27 +0100 | [diff] [blame] | 86 | if (likely(task_in_wq(task))) |
Willy Tarreau | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 87 | __task_unlink_wq(task); |
Willy Tarreau | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 88 | |
| 89 | /* the task is not in the queue now */ |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 90 | task->wq.key = task->expire; |
Willy Tarreau | 28c41a4 | 2008-06-29 17:00:59 +0200 | [diff] [blame] | 91 | #ifdef DEBUG_CHECK_INVALID_EXPIRATION_DATES |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 92 | if (tick_is_lt(task->wq.key, now_ms)) |
Willy Tarreau | 28c41a4 | 2008-06-29 17:00:59 +0200 | [diff] [blame] | 93 | /* we're queuing too far away or in the past (most likely) */ |
Willy Tarreau | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 94 | return; |
Willy Tarreau | 28c41a4 | 2008-06-29 17:00:59 +0200 | [diff] [blame] | 95 | #endif |
Willy Tarreau | ce44f12 | 2008-07-05 18:16:19 +0200 | [diff] [blame] | 96 | |
| 97 | if (likely(last_timer && |
Willy Tarreau | 26ca34e | 2009-03-21 12:51:40 +0100 | [diff] [blame] | 98 | last_timer->node.bit < 0 && |
| 99 | last_timer->key == task->wq.key && |
| 100 | last_timer->node.node_p)) { |
Willy Tarreau | ce44f12 | 2008-07-05 18:16:19 +0200 | [diff] [blame] | 101 | /* Most often, last queued timer has the same expiration date, so |
| 102 | * if it's not queued at the root, let's queue a dup directly there. |
Willy Tarreau | 26ca34e | 2009-03-21 12:51:40 +0100 | [diff] [blame] | 103 | * Note that we can only use dups at the dup tree's root (most |
| 104 | * negative bit). |
Willy Tarreau | ce44f12 | 2008-07-05 18:16:19 +0200 | [diff] [blame] | 105 | */ |
Willy Tarreau | 26ca34e | 2009-03-21 12:51:40 +0100 | [diff] [blame] | 106 | eb_insert_dup(&last_timer->node, &task->wq.node); |
| 107 | if (task->wq.node.bit < last_timer->node.bit) |
| 108 | last_timer = &task->wq; |
Willy Tarreau | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 109 | return; |
Willy Tarreau | ce44f12 | 2008-07-05 18:16:19 +0200 | [diff] [blame] | 110 | } |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 111 | eb32_insert(&timers, &task->wq); |
SaVaGe | 1d7a420 | 2009-10-06 18:53:37 +0300 | [diff] [blame] | 112 | |
| 113 | /* Make sure we don't assign the last_timer to a node-less entry */ |
| 114 | if (task->wq.node.node_p && (!last_timer || (task->wq.node.bit < last_timer->node.bit))) |
Willy Tarreau | 26ca34e | 2009-03-21 12:51:40 +0100 | [diff] [blame] | 115 | last_timer = &task->wq; |
Willy Tarreau | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 116 | return; |
Willy Tarreau | 964c936 | 2007-01-07 00:38:00 +0100 | [diff] [blame] | 117 | } |
| 118 | |
Willy Tarreau | 96bcfd7 | 2007-04-29 10:41:56 +0200 | [diff] [blame] | 119 | /* |
Willy Tarreau | 9789f7b | 2008-06-24 08:17:16 +0200 | [diff] [blame] | 120 | * Extract all expired timers from the timer queue, and wakes up all |
Thierry FOURNIER | 9cf7c4b | 2014-12-15 13:26:01 +0100 | [diff] [blame] | 121 | * associated tasks. Returns the date of next event (or eternity). |
Willy Tarreau | 96bcfd7 | 2007-04-29 10:41:56 +0200 | [diff] [blame] | 122 | */ |
Thierry FOURNIER | 9cf7c4b | 2014-12-15 13:26:01 +0100 | [diff] [blame] | 123 | int wake_expired_tasks() |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 124 | { |
Willy Tarreau | 96bcfd7 | 2007-04-29 10:41:56 +0200 | [diff] [blame] | 125 | struct task *task; |
Willy Tarreau | 9789f7b | 2008-06-24 08:17:16 +0200 | [diff] [blame] | 126 | struct eb32_node *eb; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 127 | |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 128 | eb = eb32_lookup_ge(&timers, now_ms - TIMER_LOOK_BACK); |
| 129 | while (1) { |
| 130 | if (unlikely(!eb)) { |
| 131 | /* we might have reached the end of the tree, typically because |
| 132 | * <now_ms> is in the first half and we're first scanning the last |
| 133 | * half. Let's loop back to the beginning of the tree now. |
| 134 | */ |
| 135 | eb = eb32_first(&timers); |
| 136 | if (likely(!eb)) |
| 137 | break; |
| 138 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 139 | |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 140 | if (likely(tick_is_lt(now_ms, eb->key))) { |
| 141 | /* timer not expired yet, revisit it later */ |
Thierry FOURNIER | 9cf7c4b | 2014-12-15 13:26:01 +0100 | [diff] [blame] | 142 | return eb->key; |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 143 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 144 | |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 145 | /* timer looks expired, detach it from the queue */ |
| 146 | task = eb32_entry(eb, struct task, wq); |
| 147 | eb = eb32_next(eb); |
| 148 | __task_unlink_wq(task); |
Willy Tarreau | 4136522 | 2009-03-08 07:46:27 +0100 | [diff] [blame] | 149 | |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 150 | /* It is possible that this task was left at an earlier place in the |
| 151 | * tree because a recent call to task_queue() has not moved it. This |
| 152 | * happens when the new expiration date is later than the old one. |
| 153 | * Since it is very unlikely that we reach a timeout anyway, it's a |
| 154 | * lot cheaper to proceed like this because we almost never update |
| 155 | * the tree. We may also find disabled expiration dates there. Since |
| 156 | * 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] | 157 | * to take care of this. Note that we might occasionally requeue it at |
| 158 | * the same place, before <eb>, so we have to check if this happens, |
| 159 | * 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] | 160 | * We may also not requeue the task (and not point eb at it) if its |
| 161 | * expiration time is not set. |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 162 | */ |
| 163 | if (!tick_is_expired(task->expire, now_ms)) { |
Willy Tarreau | 34e98ea | 2009-08-09 09:09:54 +0200 | [diff] [blame] | 164 | if (!tick_isset(task->expire)) |
| 165 | continue; |
| 166 | __task_queue(task); |
Willy Tarreau | 814c978 | 2009-07-14 23:48:55 +0200 | [diff] [blame] | 167 | if (!eb || eb->key > task->wq.key) |
| 168 | eb = &task->wq; |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 169 | continue; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 170 | } |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 171 | task_wakeup(task, TASK_WOKEN_TIMER); |
| 172 | } |
Willy Tarreau | 9789f7b | 2008-06-24 08:17:16 +0200 | [diff] [blame] | 173 | |
Thierry FOURNIER | 9cf7c4b | 2014-12-15 13:26:01 +0100 | [diff] [blame] | 174 | /* No task is expired */ |
| 175 | return TICK_ETERNITY; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 176 | } |
| 177 | |
Willy Tarreau | 58b458d | 2008-06-29 22:40:23 +0200 | [diff] [blame] | 178 | /* The run queue is chronologically sorted in a tree. An insertion counter is |
| 179 | * used to assign a position to each task. This counter may be combined with |
| 180 | * other variables (eg: nice value) to set the final position in the tree. The |
| 181 | * 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] | 182 | * tasks processed at once to 1/4 of the number of tasks in the queue, and to |
| 183 | * 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] | 184 | * positions have a chance to be considered. |
Willy Tarreau | 58b458d | 2008-06-29 22:40:23 +0200 | [diff] [blame] | 185 | * |
| 186 | * The function adjusts <next> if a new event is closer. |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 187 | */ |
Thierry FOURNIER | 9cf7c4b | 2014-12-15 13:26:01 +0100 | [diff] [blame] | 188 | void process_runnable_tasks() |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 189 | { |
Willy Tarreau | 964c936 | 2007-01-07 00:38:00 +0100 | [diff] [blame] | 190 | struct task *t; |
Willy Tarreau | 58b458d | 2008-06-29 22:40:23 +0200 | [diff] [blame] | 191 | unsigned int max_processed; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 192 | |
Willy Tarreau | c7bdf09 | 2009-03-21 18:33:52 +0100 | [diff] [blame] | 193 | run_queue_cur = run_queue; /* keep a copy for reporting */ |
| 194 | nb_tasks_cur = nb_tasks; |
Willy Tarreau | 91e9993 | 2008-06-30 07:51:00 +0200 | [diff] [blame] | 195 | max_processed = run_queue; |
Willy Tarreau | 98c6121 | 2011-09-10 20:08:49 +0200 | [diff] [blame] | 196 | |
| 197 | if (!run_queue) |
| 198 | return; |
| 199 | |
Willy Tarreau | 91e9993 | 2008-06-30 07:51:00 +0200 | [diff] [blame] | 200 | if (max_processed > 200) |
| 201 | max_processed = 200; |
| 202 | |
| 203 | if (likely(niced_tasks)) |
Willy Tarreau | 218859a | 2009-03-21 11:53:09 +0100 | [diff] [blame] | 204 | max_processed = (max_processed + 3) / 4; |
Willy Tarreau | 96bcfd7 | 2007-04-29 10:41:56 +0200 | [diff] [blame] | 205 | |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 206 | while (max_processed--) { |
| 207 | /* Note: this loop is one of the fastest code path in |
| 208 | * the whole program. It should not be re-arranged |
| 209 | * without a good reason. |
| 210 | */ |
Willy Tarreau | 501260b | 2015-02-23 16:07:01 +0100 | [diff] [blame] | 211 | if (unlikely(!rq_next)) { |
| 212 | rq_next = eb32_lookup_ge(&rqueue, rqueue_ticks - TIMER_LOOK_BACK); |
| 213 | if (!rq_next) { |
| 214 | /* we might have reached the end of the tree, typically because |
| 215 | * <rqueue_ticks> is in the first half and we're first scanning |
| 216 | * the last half. Let's loop back to the beginning of the tree now. |
| 217 | */ |
| 218 | rq_next = eb32_first(&rqueue); |
| 219 | if (!rq_next) |
| 220 | break; |
| 221 | } |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 222 | } |
Willy Tarreau | 58b458d | 2008-06-29 22:40:23 +0200 | [diff] [blame] | 223 | |
Willy Tarreau | 501260b | 2015-02-23 16:07:01 +0100 | [diff] [blame] | 224 | /* detach the task from the queue after updating the pointer to |
| 225 | * the next entry. |
| 226 | */ |
| 227 | t = eb32_entry(rq_next, struct task, rq); |
| 228 | rq_next = eb32_next(rq_next); |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 229 | __task_unlink_rq(t); |
Willy Tarreau | 58b458d | 2008-06-29 22:40:23 +0200 | [diff] [blame] | 230 | |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 231 | t->state |= TASK_RUNNING; |
| 232 | /* This is an optimisation to help the processor's branch |
| 233 | * predictor take this most common call. |
| 234 | */ |
Willy Tarreau | 3884cba | 2009-03-28 17:54:35 +0100 | [diff] [blame] | 235 | t->calls++; |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 236 | if (likely(t->process == process_session)) |
| 237 | t = process_session(t); |
| 238 | else |
| 239 | t = t->process(t); |
Willy Tarreau | 531cf0c | 2009-03-08 16:35:27 +0100 | [diff] [blame] | 240 | |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 241 | if (likely(t != NULL)) { |
| 242 | t->state &= ~TASK_RUNNING; |
Thierry FOURNIER | 9cf7c4b | 2014-12-15 13:26:01 +0100 | [diff] [blame] | 243 | if (t->expire) |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 244 | task_queue(t); |
Willy Tarreau | 58b458d | 2008-06-29 22:40:23 +0200 | [diff] [blame] | 245 | } |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 246 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 247 | } |
| 248 | |
Willy Tarreau | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 249 | /* perform minimal intializations, report 0 in case of error, 1 if OK. */ |
| 250 | int init_task() |
| 251 | { |
| 252 | memset(&timers, 0, sizeof(timers)); |
| 253 | memset(&rqueue, 0, sizeof(rqueue)); |
| 254 | pool2_task = create_pool("task", sizeof(struct task), MEM_F_SHARED); |
| 255 | return pool2_task != NULL; |
| 256 | } |
| 257 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 258 | /* |
| 259 | * Local variables: |
| 260 | * c-indent-level: 8 |
| 261 | * c-basic-offset: 8 |
| 262 | * End: |
| 263 | */ |