Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1 | /* |
Willy Tarreau | 24f4efa | 2010-08-27 17:56:48 +0200 | [diff] [blame] | 2 | * include/proto/task.h |
| 3 | * Functions for task management. |
| 4 | * |
| 5 | * Copyright (C) 2000-2010 Willy Tarreau - w@1wt.eu |
| 6 | * |
| 7 | * This library is free software; you can redistribute it and/or |
| 8 | * modify it under the terms of the GNU Lesser General Public |
| 9 | * License as published by the Free Software Foundation, version 2.1 |
| 10 | * exclusively. |
| 11 | * |
| 12 | * This library is distributed in the hope that it will be useful, |
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 15 | * Lesser General Public License for more details. |
| 16 | * |
| 17 | * You should have received a copy of the GNU Lesser General Public |
| 18 | * License along with this library; if not, write to the Free Software |
| 19 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
| 20 | */ |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 21 | |
| 22 | #ifndef _PROTO_TASK_H |
| 23 | #define _PROTO_TASK_H |
| 24 | |
| 25 | |
| 26 | #include <sys/time.h> |
Willy Tarreau | e3ba5f0 | 2006-06-29 18:54:54 +0200 | [diff] [blame] | 27 | |
| 28 | #include <common/config.h> |
Willy Tarreau | 2dd0d47 | 2006-06-29 17:53:05 +0200 | [diff] [blame] | 29 | #include <common/memory.h> |
Willy Tarreau | 96bcfd7 | 2007-04-29 10:41:56 +0200 | [diff] [blame] | 30 | #include <common/mini-clist.h> |
| 31 | #include <common/standard.h> |
Willy Tarreau | d0a201b | 2009-03-08 15:53:06 +0100 | [diff] [blame] | 32 | #include <common/ticks.h> |
Emeric Brun | c60def8 | 2017-09-27 14:59:38 +0200 | [diff] [blame] | 33 | #include <common/hathreads.h> |
| 34 | |
Willy Tarreau | 8d38805 | 2017-11-05 13:34:20 +0100 | [diff] [blame] | 35 | #include <eb32sctree.h> |
Willy Tarreau | 45cb4fb | 2009-10-26 21:10:04 +0100 | [diff] [blame] | 36 | #include <eb32tree.h> |
Willy Tarreau | 96bcfd7 | 2007-04-29 10:41:56 +0200 | [diff] [blame] | 37 | |
Willy Tarreau | eb11889 | 2014-11-13 16:57:19 +0100 | [diff] [blame] | 38 | #include <types/global.h> |
Willy Tarreau | e3ba5f0 | 2006-06-29 18:54:54 +0200 | [diff] [blame] | 39 | #include <types/task.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 40 | |
Willy Tarreau | d0a201b | 2009-03-08 15:53:06 +0100 | [diff] [blame] | 41 | /* Principle of the wait queue. |
| 42 | * |
| 43 | * We want to be able to tell whether an expiration date is before of after the |
| 44 | * current time <now>. We KNOW that expiration dates are never too far apart, |
| 45 | * because they are measured in ticks (milliseconds). We also know that almost |
| 46 | * all dates will be in the future, and that a very small part of them will be |
| 47 | * in the past, they are the ones which have expired since last time we checked |
| 48 | * them. Using ticks, we know if a date is in the future or in the past, but we |
| 49 | * cannot use that to store sorted information because that reference changes |
| 50 | * all the time. |
| 51 | * |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 52 | * We'll use the fact that the time wraps to sort timers. Timers above <now> |
| 53 | * are in the future, timers below <now> are in the past. Here, "above" and |
| 54 | * "below" are to be considered modulo 2^31. |
Willy Tarreau | d0a201b | 2009-03-08 15:53:06 +0100 | [diff] [blame] | 55 | * |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 56 | * Timers are stored sorted in an ebtree. We use the new ability for ebtrees to |
| 57 | * lookup values starting from X to only expire tasks between <now> - 2^31 and |
| 58 | * <now>. If the end of the tree is reached while walking over it, we simply |
| 59 | * loop back to the beginning. That way, we have no problem keeping sorted |
| 60 | * wrapping timers in a tree, between (now - 24 days) and (now + 24 days). The |
| 61 | * keys in the tree always reflect their real position, none can be infinite. |
| 62 | * This reduces the number of checks to be performed. |
Willy Tarreau | d0a201b | 2009-03-08 15:53:06 +0100 | [diff] [blame] | 63 | * |
| 64 | * Another nice optimisation is to allow a timer to stay at an old place in the |
| 65 | * queue as long as it's not further than the real expiration date. That way, |
| 66 | * we use the tree as a place holder for a minorant of the real expiration |
| 67 | * date. Since we have a very low chance of hitting a timeout anyway, we can |
| 68 | * bounce the nodes to their right place when we scan the tree if we encounter |
| 69 | * a misplaced node once in a while. This even allows us not to remove the |
| 70 | * infinite timers from the wait queue. |
| 71 | * |
| 72 | * So, to summarize, we have : |
| 73 | * - node->key always defines current position in the wait queue |
| 74 | * - timer is the real expiration date (possibly infinite) |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 75 | * - node->key is always before or equal to timer |
Willy Tarreau | d0a201b | 2009-03-08 15:53:06 +0100 | [diff] [blame] | 76 | * |
| 77 | * The run queue works similarly to the wait queue except that the current date |
| 78 | * is replaced by an insertion counter which can also wrap without any problem. |
| 79 | */ |
| 80 | |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 81 | /* The farthest we can look back in a timer tree */ |
| 82 | #define TIMER_LOOK_BACK (1U << 31) |
Willy Tarreau | d0a201b | 2009-03-08 15:53:06 +0100 | [diff] [blame] | 83 | |
| 84 | /* a few exported variables */ |
Willy Tarreau | a461318 | 2009-03-21 18:13:21 +0100 | [diff] [blame] | 85 | extern unsigned int nb_tasks; /* total number of tasks */ |
Olivier Houchard | 9b03c0c | 2018-07-26 18:45:22 +0200 | [diff] [blame] | 86 | extern volatile unsigned long active_tasks_mask; /* Mask of threads with active tasks */ |
Christopher Faulet | 34c5cc9 | 2016-12-06 09:15:30 +0100 | [diff] [blame] | 87 | extern unsigned int tasks_run_queue; /* run queue size */ |
| 88 | extern unsigned int tasks_run_queue_cur; |
Willy Tarreau | c7bdf09 | 2009-03-21 18:33:52 +0100 | [diff] [blame] | 89 | extern unsigned int nb_tasks_cur; |
Willy Tarreau | 91e9993 | 2008-06-30 07:51:00 +0200 | [diff] [blame] | 90 | extern unsigned int niced_tasks; /* number of niced tasks in the run queue */ |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 91 | extern struct pool_head *pool_head_task; |
Olivier Houchard | b0bdae7 | 2018-05-18 18:45:28 +0200 | [diff] [blame] | 92 | extern struct pool_head *pool_head_tasklet; |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 93 | extern struct pool_head *pool_head_notification; |
Olivier Houchard | 9b36cb4 | 2018-05-04 15:46:16 +0200 | [diff] [blame] | 94 | extern THREAD_LOCAL struct task *curr_task; /* task currently running or NULL */ |
Olivier Houchard | b1ca58b | 2018-06-06 14:22:03 +0200 | [diff] [blame] | 95 | #ifdef USE_THREAD |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 96 | extern struct eb_root timers; /* sorted timers tree, global */ |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 97 | extern struct eb_root rqueue; /* tree constituting the run queue */ |
Olivier Houchard | 77551ee | 2018-07-26 15:59:38 +0200 | [diff] [blame] | 98 | extern int global_rqueue_size; /* Number of element sin the global runqueue */ |
Olivier Houchard | b1ca58b | 2018-06-06 14:22:03 +0200 | [diff] [blame] | 99 | #endif |
Olivier Houchard | 77551ee | 2018-07-26 15:59:38 +0200 | [diff] [blame] | 100 | |
Willy Tarreau | 8d8747a | 2018-10-15 16:12:48 +0200 | [diff] [blame] | 101 | /* force to split per-thread stuff into separate cache lines */ |
| 102 | struct task_per_thread { |
| 103 | struct eb_root timers; /* tree constituting the per-thread wait queue */ |
| 104 | struct eb_root rqueue; /* tree constituting the per-thread run queue */ |
| 105 | struct list task_list; /* List of tasks to be run, mixing tasks and tasklets */ |
| 106 | int task_list_size; /* Number of tasks in the task_list */ |
| 107 | int rqueue_size; /* Number of elements in the per-thread run queue */ |
| 108 | __attribute__((aligned(64))) char end[0]; |
| 109 | }; |
| 110 | |
| 111 | extern struct task_per_thread task_per_thread[MAX_THREADS]; |
Christopher Faulet | 9dcf9b6 | 2017-11-13 10:34:01 +0100 | [diff] [blame] | 112 | |
| 113 | __decl_hathreads(extern HA_SPINLOCK_T rq_lock); /* spin lock related to run queue */ |
| 114 | __decl_hathreads(extern HA_SPINLOCK_T wq_lock); /* spin lock related to wait queue */ |
Willy Tarreau | c6ca1a0 | 2007-05-13 19:43:47 +0200 | [diff] [blame] | 115 | |
Olivier Houchard | 5d18718 | 2018-08-01 15:58:44 +0200 | [diff] [blame] | 116 | |
| 117 | static inline void task_insert_into_tasklet_list(struct task *t); |
| 118 | |
Willy Tarreau | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 119 | /* return 0 if task is in run queue, otherwise non-zero */ |
| 120 | static inline int task_in_rq(struct task *t) |
| 121 | { |
Olivier Houchard | b0bdae7 | 2018-05-18 18:45:28 +0200 | [diff] [blame] | 122 | /* Check if leaf_p is NULL, in case he's not in the runqueue, and if |
| 123 | * it's not 0x1, which would mean it's in the tasklet list. |
| 124 | */ |
Olivier Houchard | 4a1be0c | 2019-04-17 19:13:07 +0200 | [diff] [blame] | 125 | return t->rq.node.leaf_p != NULL; |
Willy Tarreau | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 126 | } |
| 127 | |
| 128 | /* return 0 if task is in wait queue, otherwise non-zero */ |
| 129 | static inline int task_in_wq(struct task *t) |
| 130 | { |
| 131 | return t->wq.node.leaf_p != NULL; |
| 132 | } |
| 133 | |
Willy Tarreau | fdccded | 2008-08-29 18:19:04 +0200 | [diff] [blame] | 134 | /* puts the task <t> in run queue with reason flags <f>, and returns <t> */ |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 135 | /* This will put the task in the local runqueue if the task is only runnable |
| 136 | * by the current thread, in the global runqueue otherwies. |
| 137 | */ |
| 138 | void __task_wakeup(struct task *t, struct eb_root *); |
| 139 | static inline void task_wakeup(struct task *t, unsigned int f) |
Willy Tarreau | 4df8206 | 2008-08-29 15:26:14 +0200 | [diff] [blame] | 140 | { |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 141 | unsigned short state; |
Emeric Brun | c60def8 | 2017-09-27 14:59:38 +0200 | [diff] [blame] | 142 | |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 143 | #ifdef USE_THREAD |
| 144 | struct eb_root *root; |
Emeric Brun | c60def8 | 2017-09-27 14:59:38 +0200 | [diff] [blame] | 145 | |
Olivier Houchard | b0bdae7 | 2018-05-18 18:45:28 +0200 | [diff] [blame] | 146 | if (t->thread_mask == tid_bit || global.nbthread == 1) |
Willy Tarreau | 8d8747a | 2018-10-15 16:12:48 +0200 | [diff] [blame] | 147 | root = &task_per_thread[tid].rqueue; |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 148 | else |
| 149 | root = &rqueue; |
| 150 | #else |
Willy Tarreau | 8d8747a | 2018-10-15 16:12:48 +0200 | [diff] [blame] | 151 | struct eb_root *root = &task_per_thread[tid].rqueue; |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 152 | #endif |
| 153 | |
Willy Tarreau | b038007 | 2019-04-17 11:47:18 +0200 | [diff] [blame] | 154 | state = _HA_ATOMIC_OR(&t->state, f); |
| 155 | while (!(state & (TASK_RUNNING | TASK_QUEUED))) { |
Willy Tarreau | 8c12e2f | 2019-04-17 20:52:51 +0200 | [diff] [blame] | 156 | if (_HA_ATOMIC_CAS(&t->state, &state, state | TASK_QUEUED)) { |
| 157 | __task_wakeup(t, root); |
Willy Tarreau | b038007 | 2019-04-17 11:47:18 +0200 | [diff] [blame] | 158 | break; |
Willy Tarreau | 8c12e2f | 2019-04-17 20:52:51 +0200 | [diff] [blame] | 159 | } |
Willy Tarreau | b038007 | 2019-04-17 11:47:18 +0200 | [diff] [blame] | 160 | } |
Willy Tarreau | 4df8206 | 2008-08-29 15:26:14 +0200 | [diff] [blame] | 161 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 162 | |
Willy Tarreau | f65610a | 2017-10-31 16:06:06 +0100 | [diff] [blame] | 163 | /* change the thread affinity of a task to <thread_mask> */ |
Emeric Brun | c60def8 | 2017-09-27 14:59:38 +0200 | [diff] [blame] | 164 | static inline void task_set_affinity(struct task *t, unsigned long thread_mask) |
| 165 | { |
Willy Tarreau | f65610a | 2017-10-31 16:06:06 +0100 | [diff] [blame] | 166 | t->thread_mask = thread_mask; |
Emeric Brun | c60def8 | 2017-09-27 14:59:38 +0200 | [diff] [blame] | 167 | } |
Willy Tarreau | f65610a | 2017-10-31 16:06:06 +0100 | [diff] [blame] | 168 | |
Willy Tarreau | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 169 | /* |
| 170 | * Unlink the task from the wait queue, and possibly update the last_timer |
| 171 | * pointer. A pointer to the task itself is returned. The task *must* already |
| 172 | * be in the wait queue before calling this function. If unsure, use the safer |
| 173 | * task_unlink_wq() function. |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 174 | */ |
Willy Tarreau | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 175 | static inline struct task *__task_unlink_wq(struct task *t) |
| 176 | { |
| 177 | eb32_delete(&t->wq); |
Willy Tarreau | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 178 | return t; |
| 179 | } |
| 180 | |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 181 | /* remove a task from its wait queue. It may either be the local wait queue if |
| 182 | * the task is bound to a single thread (in which case there's no locking |
| 183 | * involved) or the global queue, with locking. |
| 184 | */ |
Willy Tarreau | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 185 | static inline struct task *task_unlink_wq(struct task *t) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 186 | { |
Richard Russo | bc9d984 | 2019-02-20 12:43:45 -0800 | [diff] [blame] | 187 | unsigned long locked; |
| 188 | |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 189 | if (likely(task_in_wq(t))) { |
Richard Russo | bc9d984 | 2019-02-20 12:43:45 -0800 | [diff] [blame] | 190 | locked = atleast2(t->thread_mask); |
| 191 | if (locked) |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 192 | HA_SPIN_LOCK(TASK_WQ_LOCK, &wq_lock); |
Willy Tarreau | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 193 | __task_unlink_wq(t); |
Richard Russo | bc9d984 | 2019-02-20 12:43:45 -0800 | [diff] [blame] | 194 | if (locked) |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 195 | HA_SPIN_UNLOCK(TASK_WQ_LOCK, &wq_lock); |
| 196 | } |
Willy Tarreau | 96bcfd7 | 2007-04-29 10:41:56 +0200 | [diff] [blame] | 197 | return t; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 198 | } |
| 199 | |
| 200 | /* |
Christopher Faulet | 34c5cc9 | 2016-12-06 09:15:30 +0100 | [diff] [blame] | 201 | * Unlink the task from the run queue. The tasks_run_queue size and number of |
| 202 | * niced tasks are updated too. A pointer to the task itself is returned. The |
| 203 | * task *must* already be in the run queue before calling this function. If |
| 204 | * unsure, use the safer task_unlink_rq() function. Note that the pointer to the |
| 205 | * next run queue entry is neither checked nor updated. |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 206 | */ |
Willy Tarreau | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 207 | static inline struct task *__task_unlink_rq(struct task *t) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 208 | { |
Olivier Houchard | 4c283285 | 2019-03-08 18:48:47 +0100 | [diff] [blame] | 209 | _HA_ATOMIC_SUB(&tasks_run_queue, 1); |
Olivier Houchard | 77551ee | 2018-07-26 15:59:38 +0200 | [diff] [blame] | 210 | #ifdef USE_THREAD |
| 211 | if (t->state & TASK_GLOBAL) { |
Olivier Houchard | 4c283285 | 2019-03-08 18:48:47 +0100 | [diff] [blame] | 212 | _HA_ATOMIC_AND(&t->state, ~TASK_GLOBAL); |
Olivier Houchard | 77551ee | 2018-07-26 15:59:38 +0200 | [diff] [blame] | 213 | global_rqueue_size--; |
| 214 | } else |
| 215 | #endif |
Willy Tarreau | 8d8747a | 2018-10-15 16:12:48 +0200 | [diff] [blame] | 216 | task_per_thread[tid].rqueue_size--; |
Olivier Houchard | 77551ee | 2018-07-26 15:59:38 +0200 | [diff] [blame] | 217 | eb32sc_delete(&t->rq); |
Willy Tarreau | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 218 | if (likely(t->nice)) |
Olivier Houchard | 4c283285 | 2019-03-08 18:48:47 +0100 | [diff] [blame] | 219 | _HA_ATOMIC_SUB(&niced_tasks, 1); |
Willy Tarreau | ce44f12 | 2008-07-05 18:16:19 +0200 | [diff] [blame] | 220 | return t; |
| 221 | } |
Willy Tarreau | 9789f7b | 2008-06-24 08:17:16 +0200 | [diff] [blame] | 222 | |
Willy Tarreau | 501260b | 2015-02-23 16:07:01 +0100 | [diff] [blame] | 223 | /* This function unlinks task <t> from the run queue if it is in it. It also |
| 224 | * takes care of updating the next run queue task if it was this task. |
| 225 | */ |
Willy Tarreau | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 226 | static inline struct task *task_unlink_rq(struct task *t) |
| 227 | { |
Olivier Houchard | 1d7f37a | 2019-03-14 16:14:04 +0100 | [diff] [blame] | 228 | int is_global = t->state & TASK_GLOBAL; |
| 229 | |
| 230 | if (is_global) |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 231 | HA_SPIN_LOCK(TASK_RQ_LOCK, &rq_lock); |
Willy Tarreau | 24f382f | 2019-04-12 16:10:55 +0200 | [diff] [blame] | 232 | if (likely(task_in_rq(t))) |
Willy Tarreau | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 233 | __task_unlink_rq(t); |
Olivier Houchard | 1d7f37a | 2019-03-14 16:14:04 +0100 | [diff] [blame] | 234 | if (is_global) |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 235 | HA_SPIN_UNLOCK(TASK_RQ_LOCK, &rq_lock); |
Willy Tarreau | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 236 | return t; |
| 237 | } |
| 238 | |
Olivier Houchard | b0bdae7 | 2018-05-18 18:45:28 +0200 | [diff] [blame] | 239 | static inline void tasklet_wakeup(struct tasklet *tl) |
| 240 | { |
Olivier Houchard | e17c2d3 | 2018-07-17 18:29:22 +0200 | [diff] [blame] | 241 | if (!LIST_ISEMPTY(&tl->list)) |
| 242 | return; |
Willy Tarreau | 8d8747a | 2018-10-15 16:12:48 +0200 | [diff] [blame] | 243 | LIST_ADDQ(&task_per_thread[tid].task_list, &tl->list); |
| 244 | task_per_thread[tid].task_list_size++; |
Olivier Houchard | 4c283285 | 2019-03-08 18:48:47 +0100 | [diff] [blame] | 245 | _HA_ATOMIC_OR(&active_tasks_mask, tid_bit); |
| 246 | _HA_ATOMIC_ADD(&tasks_run_queue, 1); |
Olivier Houchard | b0bdae7 | 2018-05-18 18:45:28 +0200 | [diff] [blame] | 247 | |
| 248 | } |
| 249 | |
| 250 | static inline void task_insert_into_tasklet_list(struct task *t) |
| 251 | { |
| 252 | struct tasklet *tl; |
Olivier Houchard | b0bdae7 | 2018-05-18 18:45:28 +0200 | [diff] [blame] | 253 | |
Olivier Houchard | 4c283285 | 2019-03-08 18:48:47 +0100 | [diff] [blame] | 254 | _HA_ATOMIC_ADD(&tasks_run_queue, 1); |
Willy Tarreau | 8d8747a | 2018-10-15 16:12:48 +0200 | [diff] [blame] | 255 | task_per_thread[tid].task_list_size++; |
Olivier Houchard | b0bdae7 | 2018-05-18 18:45:28 +0200 | [diff] [blame] | 256 | tl = (struct tasklet *)t; |
Willy Tarreau | 8d8747a | 2018-10-15 16:12:48 +0200 | [diff] [blame] | 257 | LIST_ADDQ(&task_per_thread[tid].task_list, &tl->list); |
Olivier Houchard | b0bdae7 | 2018-05-18 18:45:28 +0200 | [diff] [blame] | 258 | } |
| 259 | |
Willy Tarreau | e73256f | 2019-03-25 18:02:54 +0100 | [diff] [blame] | 260 | /* remove the task from the tasklet list. The task MUST already be there. If |
| 261 | * unsure, use task_remove_from_task_list() instead. |
| 262 | */ |
| 263 | static inline void __task_remove_from_tasklet_list(struct task *t) |
Olivier Houchard | b0bdae7 | 2018-05-18 18:45:28 +0200 | [diff] [blame] | 264 | { |
Willy Tarreau | b238b12 | 2019-03-06 19:34:25 +0100 | [diff] [blame] | 265 | LIST_DEL_INIT(&((struct tasklet *)t)->list); |
Willy Tarreau | 8d8747a | 2018-10-15 16:12:48 +0200 | [diff] [blame] | 266 | task_per_thread[tid].task_list_size--; |
Olivier Houchard | 4c283285 | 2019-03-08 18:48:47 +0100 | [diff] [blame] | 267 | _HA_ATOMIC_SUB(&tasks_run_queue, 1); |
Olivier Houchard | b0bdae7 | 2018-05-18 18:45:28 +0200 | [diff] [blame] | 268 | } |
| 269 | |
Willy Tarreau | e73256f | 2019-03-25 18:02:54 +0100 | [diff] [blame] | 270 | static inline void task_remove_from_tasklet_list(struct task *t) |
| 271 | { |
| 272 | if (likely(!LIST_ISEMPTY(&((struct tasklet *)t)->list))) |
| 273 | __task_remove_from_tasklet_list(t); |
| 274 | } |
| 275 | |
Willy Tarreau | ce44f12 | 2008-07-05 18:16:19 +0200 | [diff] [blame] | 276 | /* |
Willy Tarreau | a461318 | 2009-03-21 18:13:21 +0100 | [diff] [blame] | 277 | * Initialize a new task. The bare minimum is performed (queue pointers and |
| 278 | * state). The task is returned. This function should not be used outside of |
| 279 | * task_new(). |
Willy Tarreau | 9789f7b | 2008-06-24 08:17:16 +0200 | [diff] [blame] | 280 | */ |
Emeric Brun | c60def8 | 2017-09-27 14:59:38 +0200 | [diff] [blame] | 281 | static inline struct task *task_init(struct task *t, unsigned long thread_mask) |
Willy Tarreau | 9789f7b | 2008-06-24 08:17:16 +0200 | [diff] [blame] | 282 | { |
Willy Tarreau | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 283 | t->wq.node.leaf_p = NULL; |
| 284 | t->rq.node.leaf_p = NULL; |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 285 | t->state = TASK_SLEEPING; |
Willy Tarreau | f65610a | 2017-10-31 16:06:06 +0100 | [diff] [blame] | 286 | t->thread_mask = thread_mask; |
Willy Tarreau | 91e9993 | 2008-06-30 07:51:00 +0200 | [diff] [blame] | 287 | t->nice = 0; |
Willy Tarreau | 3884cba | 2009-03-28 17:54:35 +0100 | [diff] [blame] | 288 | t->calls = 0; |
Willy Tarreau | 9efd745 | 2018-05-31 14:48:54 +0200 | [diff] [blame] | 289 | t->call_date = 0; |
| 290 | t->cpu_time = 0; |
| 291 | t->lat_time = 0; |
Willy Tarreau | f421999 | 2017-07-24 17:52:58 +0200 | [diff] [blame] | 292 | t->expire = TICK_ETERNITY; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 293 | return t; |
| 294 | } |
| 295 | |
Olivier Houchard | b0bdae7 | 2018-05-18 18:45:28 +0200 | [diff] [blame] | 296 | static inline void tasklet_init(struct tasklet *t) |
| 297 | { |
| 298 | t->nice = -32768; |
| 299 | t->calls = 0; |
| 300 | t->state = 0; |
Olivier Houchard | 9ddaf79 | 2018-07-19 16:02:16 +0200 | [diff] [blame] | 301 | t->process = NULL; |
Olivier Houchard | dcd6f3a | 2018-06-08 17:08:19 +0200 | [diff] [blame] | 302 | LIST_INIT(&t->list); |
Olivier Houchard | b0bdae7 | 2018-05-18 18:45:28 +0200 | [diff] [blame] | 303 | } |
| 304 | |
| 305 | static inline struct tasklet *tasklet_new(void) |
| 306 | { |
| 307 | struct tasklet *t = pool_alloc(pool_head_tasklet); |
| 308 | |
| 309 | if (t) { |
| 310 | tasklet_init(t); |
| 311 | } |
| 312 | return t; |
| 313 | } |
| 314 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 315 | /* |
Willy Tarreau | a461318 | 2009-03-21 18:13:21 +0100 | [diff] [blame] | 316 | * Allocate and initialise a new task. The new task is returned, or NULL in |
| 317 | * case of lack of memory. The task count is incremented. Tasks should only |
| 318 | * be allocated this way, and must be freed using task_free(). |
| 319 | */ |
Emeric Brun | c60def8 | 2017-09-27 14:59:38 +0200 | [diff] [blame] | 320 | static inline struct task *task_new(unsigned long thread_mask) |
Willy Tarreau | a461318 | 2009-03-21 18:13:21 +0100 | [diff] [blame] | 321 | { |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 322 | struct task *t = pool_alloc(pool_head_task); |
Willy Tarreau | a461318 | 2009-03-21 18:13:21 +0100 | [diff] [blame] | 323 | if (t) { |
Olivier Houchard | 4c283285 | 2019-03-08 18:48:47 +0100 | [diff] [blame] | 324 | _HA_ATOMIC_ADD(&nb_tasks, 1); |
Emeric Brun | c60def8 | 2017-09-27 14:59:38 +0200 | [diff] [blame] | 325 | task_init(t, thread_mask); |
Willy Tarreau | a461318 | 2009-03-21 18:13:21 +0100 | [diff] [blame] | 326 | } |
| 327 | return t; |
| 328 | } |
| 329 | |
| 330 | /* |
| 331 | * Free a task. Its context must have been freed since it will be lost. |
| 332 | * The task count is decremented. |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 333 | */ |
Olivier Houchard | 9b36cb4 | 2018-05-04 15:46:16 +0200 | [diff] [blame] | 334 | static inline void __task_free(struct task *t) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 335 | { |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 336 | pool_free(pool_head_task, t); |
Willy Tarreau | eb11889 | 2014-11-13 16:57:19 +0100 | [diff] [blame] | 337 | if (unlikely(stopping)) |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 338 | pool_flush(pool_head_task); |
Olivier Houchard | 4c283285 | 2019-03-08 18:48:47 +0100 | [diff] [blame] | 339 | _HA_ATOMIC_SUB(&nb_tasks, 1); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 340 | } |
| 341 | |
Olivier Houchard | 3f795f7 | 2019-04-17 22:51:06 +0200 | [diff] [blame] | 342 | static inline void task_destroy(struct task *t) |
Olivier Houchard | 9b36cb4 | 2018-05-04 15:46:16 +0200 | [diff] [blame] | 343 | { |
Olivier Houchard | 3f795f7 | 2019-04-17 22:51:06 +0200 | [diff] [blame] | 344 | task_unlink_wq(t); |
| 345 | /* We don't have to explicitely remove from the run queue. |
| 346 | * If we are in the runqueue, the test below will set t->process |
| 347 | * to NULL, and the task will be free'd when it'll be its turn |
| 348 | * to run. |
| 349 | */ |
| 350 | |
Olivier Houchard | 9b36cb4 | 2018-05-04 15:46:16 +0200 | [diff] [blame] | 351 | /* There's no need to protect t->state with a lock, as the task |
| 352 | * has to run on the current thread. |
| 353 | */ |
Willy Tarreau | a70bfaa | 2019-04-17 21:58:23 +0200 | [diff] [blame] | 354 | if (t == curr_task || !(t->state & (TASK_QUEUED | TASK_RUNNING))) |
Olivier Houchard | 9b36cb4 | 2018-05-04 15:46:16 +0200 | [diff] [blame] | 355 | __task_free(t); |
| 356 | else |
| 357 | t->process = NULL; |
| 358 | } |
| 359 | |
Olivier Houchard | b0bdae7 | 2018-05-18 18:45:28 +0200 | [diff] [blame] | 360 | static inline void tasklet_free(struct tasklet *tl) |
| 361 | { |
Olivier Houchard | 09e498f | 2018-12-24 14:03:10 +0100 | [diff] [blame] | 362 | if (!LIST_ISEMPTY(&tl->list)) { |
Willy Tarreau | a33d39a | 2019-03-25 18:10:53 +0100 | [diff] [blame] | 363 | LIST_DEL(&tl->list); |
Willy Tarreau | 8d8747a | 2018-10-15 16:12:48 +0200 | [diff] [blame] | 364 | task_per_thread[tid].task_list_size--; |
Olivier Houchard | 4c283285 | 2019-03-08 18:48:47 +0100 | [diff] [blame] | 365 | _HA_ATOMIC_SUB(&tasks_run_queue, 1); |
Olivier Houchard | 09e498f | 2018-12-24 14:03:10 +0100 | [diff] [blame] | 366 | } |
Olivier Houchard | dcd6f3a | 2018-06-08 17:08:19 +0200 | [diff] [blame] | 367 | |
Olivier Houchard | b0bdae7 | 2018-05-18 18:45:28 +0200 | [diff] [blame] | 368 | pool_free(pool_head_tasklet, tl); |
| 369 | if (unlikely(stopping)) |
| 370 | pool_flush(pool_head_tasklet); |
| 371 | } |
| 372 | |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 373 | void __task_queue(struct task *task, struct eb_root *wq); |
| 374 | |
Willy Tarreau | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 375 | /* Place <task> into the wait queue, where it may already be. If the expiration |
Willy Tarreau | 531cf0c | 2009-03-08 16:35:27 +0100 | [diff] [blame] | 376 | * timer is infinite, do nothing and rely on wake_expired_task to clean up. |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 377 | * If the task is bound to a single thread, it's assumed to be bound to the |
| 378 | * current thread's queue and is queued without locking. Otherwise it's queued |
| 379 | * into the global wait queue, protected by locks. |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 380 | */ |
Willy Tarreau | 531cf0c | 2009-03-08 16:35:27 +0100 | [diff] [blame] | 381 | static inline void task_queue(struct task *task) |
| 382 | { |
| 383 | /* If we already have a place in the wait queue no later than the |
| 384 | * timeout we're trying to set, we'll stay there, because it is very |
| 385 | * unlikely that we will reach the timeout anyway. If the timeout |
| 386 | * has been disabled, it's useless to leave the queue as well. We'll |
| 387 | * rely on wake_expired_tasks() to catch the node and move it to the |
| 388 | * proper place should it ever happen. Finally we only add the task |
| 389 | * to the queue if it was not there or if it was further than what |
| 390 | * we want. |
| 391 | */ |
| 392 | if (!tick_isset(task->expire)) |
| 393 | return; |
| 394 | |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 395 | #ifdef USE_THREAD |
| 396 | if (atleast2(task->thread_mask)) { |
| 397 | HA_SPIN_LOCK(TASK_WQ_LOCK, &wq_lock); |
| 398 | if (!task_in_wq(task) || tick_is_lt(task->expire, task->wq.key)) |
| 399 | __task_queue(task, &timers); |
| 400 | HA_SPIN_UNLOCK(TASK_WQ_LOCK, &wq_lock); |
| 401 | } else |
| 402 | #endif |
| 403 | { |
| 404 | if (!task_in_wq(task) || tick_is_lt(task->expire, task->wq.key)) |
Willy Tarreau | 8d8747a | 2018-10-15 16:12:48 +0200 | [diff] [blame] | 405 | __task_queue(task, &task_per_thread[tid].timers); |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 406 | } |
Willy Tarreau | 531cf0c | 2009-03-08 16:35:27 +0100 | [diff] [blame] | 407 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 408 | |
Willy Tarreau | 26e4881 | 2011-07-25 14:30:42 +0200 | [diff] [blame] | 409 | /* Ensure <task> will be woken up at most at <when>. If the task is already in |
| 410 | * the run queue (but not running), nothing is done. It may be used that way |
| 411 | * with a delay : task_schedule(task, tick_add(now_ms, delay)); |
| 412 | */ |
| 413 | static inline void task_schedule(struct task *task, int when) |
| 414 | { |
Emeric Brun | c60def8 | 2017-09-27 14:59:38 +0200 | [diff] [blame] | 415 | /* TODO: mthread, check if there is no tisk with this test */ |
Willy Tarreau | 26e4881 | 2011-07-25 14:30:42 +0200 | [diff] [blame] | 416 | if (task_in_rq(task)) |
| 417 | return; |
| 418 | |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 419 | #ifdef USE_THREAD |
| 420 | if (atleast2(task->thread_mask)) { |
| 421 | HA_SPIN_LOCK(TASK_WQ_LOCK, &wq_lock); |
| 422 | if (task_in_wq(task)) |
| 423 | when = tick_first(when, task->expire); |
| 424 | |
| 425 | task->expire = when; |
| 426 | if (!task_in_wq(task) || tick_is_lt(task->expire, task->wq.key)) |
| 427 | __task_queue(task, &timers); |
| 428 | HA_SPIN_UNLOCK(TASK_WQ_LOCK, &wq_lock); |
| 429 | } else |
| 430 | #endif |
| 431 | { |
| 432 | if (task_in_wq(task)) |
| 433 | when = tick_first(when, task->expire); |
Willy Tarreau | 26e4881 | 2011-07-25 14:30:42 +0200 | [diff] [blame] | 434 | |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 435 | task->expire = when; |
| 436 | if (!task_in_wq(task) || tick_is_lt(task->expire, task->wq.key)) |
Willy Tarreau | 8d8747a | 2018-10-15 16:12:48 +0200 | [diff] [blame] | 437 | __task_queue(task, &task_per_thread[tid].timers); |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 438 | } |
Willy Tarreau | 26e4881 | 2011-07-25 14:30:42 +0200 | [diff] [blame] | 439 | } |
| 440 | |
Thierry FOURNIER | d697596 | 2017-07-12 14:31:10 +0200 | [diff] [blame] | 441 | /* This function register a new signal. "lua" is the current lua |
| 442 | * execution context. It contains a pointer to the associated task. |
| 443 | * "link" is a list head attached to an other task that must be wake |
| 444 | * the lua task if an event occurs. This is useful with external |
| 445 | * events like TCP I/O or sleep functions. This funcion allocate |
| 446 | * memory for the signal. |
| 447 | */ |
| 448 | static inline struct notification *notification_new(struct list *purge, struct list *event, struct task *wakeup) |
| 449 | { |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 450 | struct notification *com = pool_alloc(pool_head_notification); |
Thierry FOURNIER | d697596 | 2017-07-12 14:31:10 +0200 | [diff] [blame] | 451 | if (!com) |
| 452 | return NULL; |
| 453 | LIST_ADDQ(purge, &com->purge_me); |
| 454 | LIST_ADDQ(event, &com->wake_me); |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 455 | HA_SPIN_INIT(&com->lock); |
Thierry FOURNIER | d697596 | 2017-07-12 14:31:10 +0200 | [diff] [blame] | 456 | com->task = wakeup; |
| 457 | return com; |
| 458 | } |
| 459 | |
| 460 | /* This function purge all the pending signals when the LUA execution |
| 461 | * is finished. This prevent than a coprocess try to wake a deleted |
| 462 | * task. This function remove the memory associated to the signal. |
Thierry FOURNIER | d5b7983 | 2017-12-10 17:14:07 +0100 | [diff] [blame] | 463 | * The purge list is not locked because it is owned by only one |
| 464 | * process. before browsing this list, the caller must ensure to be |
| 465 | * the only one browser. |
Thierry FOURNIER | d697596 | 2017-07-12 14:31:10 +0200 | [diff] [blame] | 466 | */ |
| 467 | static inline void notification_purge(struct list *purge) |
| 468 | { |
| 469 | struct notification *com, *back; |
| 470 | |
| 471 | /* Delete all pending communication signals. */ |
| 472 | list_for_each_entry_safe(com, back, purge, purge_me) { |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 473 | HA_SPIN_LOCK(NOTIF_LOCK, &com->lock); |
Thierry FOURNIER | d697596 | 2017-07-12 14:31:10 +0200 | [diff] [blame] | 474 | LIST_DEL(&com->purge_me); |
Thierry FOURNIER | 738a6d7 | 2017-07-17 00:14:07 +0200 | [diff] [blame] | 475 | if (!com->task) { |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 476 | HA_SPIN_UNLOCK(NOTIF_LOCK, &com->lock); |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 477 | pool_free(pool_head_notification, com); |
Thierry FOURNIER | 738a6d7 | 2017-07-17 00:14:07 +0200 | [diff] [blame] | 478 | continue; |
| 479 | } |
| 480 | com->task = NULL; |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 481 | HA_SPIN_UNLOCK(NOTIF_LOCK, &com->lock); |
Thierry FOURNIER | d697596 | 2017-07-12 14:31:10 +0200 | [diff] [blame] | 482 | } |
| 483 | } |
| 484 | |
Thierry FOURNIER | cb14688 | 2017-12-10 17:10:57 +0100 | [diff] [blame] | 485 | /* In some cases, the disconnected notifications must be cleared. |
| 486 | * This function just release memory blocs. The purge list is not |
| 487 | * locked because it is owned by only one process. Before browsing |
| 488 | * this list, the caller must ensure to be the only one browser. |
| 489 | * The "com" is not locked because when com->task is NULL, the |
| 490 | * notification is no longer used. |
| 491 | */ |
| 492 | static inline void notification_gc(struct list *purge) |
| 493 | { |
| 494 | struct notification *com, *back; |
| 495 | |
| 496 | /* Delete all pending communication signals. */ |
| 497 | list_for_each_entry_safe (com, back, purge, purge_me) { |
| 498 | if (com->task) |
| 499 | continue; |
| 500 | LIST_DEL(&com->purge_me); |
| 501 | pool_free(pool_head_notification, com); |
| 502 | } |
| 503 | } |
| 504 | |
Thierry FOURNIER | d697596 | 2017-07-12 14:31:10 +0200 | [diff] [blame] | 505 | /* This function sends signals. It wakes all the tasks attached |
| 506 | * to a list head, and remove the signal, and free the used |
Thierry FOURNIER | d5b7983 | 2017-12-10 17:14:07 +0100 | [diff] [blame] | 507 | * memory. The wake list is not locked because it is owned by |
| 508 | * only one process. before browsing this list, the caller must |
| 509 | * ensure to be the only one browser. |
Thierry FOURNIER | d697596 | 2017-07-12 14:31:10 +0200 | [diff] [blame] | 510 | */ |
| 511 | static inline void notification_wake(struct list *wake) |
| 512 | { |
| 513 | struct notification *com, *back; |
| 514 | |
| 515 | /* Wake task and delete all pending communication signals. */ |
| 516 | list_for_each_entry_safe(com, back, wake, wake_me) { |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 517 | HA_SPIN_LOCK(NOTIF_LOCK, &com->lock); |
Thierry FOURNIER | d697596 | 2017-07-12 14:31:10 +0200 | [diff] [blame] | 518 | LIST_DEL(&com->wake_me); |
Thierry FOURNIER | 738a6d7 | 2017-07-17 00:14:07 +0200 | [diff] [blame] | 519 | if (!com->task) { |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 520 | HA_SPIN_UNLOCK(NOTIF_LOCK, &com->lock); |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 521 | pool_free(pool_head_notification, com); |
Thierry FOURNIER | 738a6d7 | 2017-07-17 00:14:07 +0200 | [diff] [blame] | 522 | continue; |
| 523 | } |
Thierry FOURNIER | d697596 | 2017-07-12 14:31:10 +0200 | [diff] [blame] | 524 | task_wakeup(com->task, TASK_WOKEN_MSG); |
Thierry FOURNIER | 738a6d7 | 2017-07-17 00:14:07 +0200 | [diff] [blame] | 525 | com->task = NULL; |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 526 | HA_SPIN_UNLOCK(NOTIF_LOCK, &com->lock); |
Thierry FOURNIER | d697596 | 2017-07-12 14:31:10 +0200 | [diff] [blame] | 527 | } |
| 528 | } |
| 529 | |
Thierry FOURNIER | 9d5422a | 2018-05-30 11:40:08 +0200 | [diff] [blame] | 530 | /* This function returns true is some notification are pending |
| 531 | */ |
| 532 | static inline int notification_registered(struct list *wake) |
| 533 | { |
| 534 | return !LIST_ISEMPTY(wake); |
| 535 | } |
| 536 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 537 | /* |
Willy Tarreau | 918ff60 | 2011-07-25 16:33:49 +0200 | [diff] [blame] | 538 | * This does 3 things : |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 539 | * - wake up all expired tasks |
| 540 | * - call all runnable tasks |
Willy Tarreau | d825eef | 2007-05-12 22:35:00 +0200 | [diff] [blame] | 541 | * - return the date of next event in <next> or eternity. |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 542 | */ |
| 543 | |
Thierry FOURNIER | 9cf7c4b | 2014-12-15 13:26:01 +0100 | [diff] [blame] | 544 | void process_runnable_tasks(); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 545 | |
Willy Tarreau | 58b458d | 2008-06-29 22:40:23 +0200 | [diff] [blame] | 546 | /* |
| 547 | * Extract all expired timers from the timer queue, and wakes up all |
| 548 | * associated tasks. Returns the date of next event (or eternity). |
| 549 | */ |
Thierry FOURNIER | 9cf7c4b | 2014-12-15 13:26:01 +0100 | [diff] [blame] | 550 | int wake_expired_tasks(); |
Willy Tarreau | 58b458d | 2008-06-29 22:40:23 +0200 | [diff] [blame] | 551 | |
William Lallemand | 27f3fa5 | 2018-12-06 14:05:20 +0100 | [diff] [blame] | 552 | /* |
| 553 | * Delete every tasks before running the master polling loop |
| 554 | */ |
| 555 | void mworker_cleantasks(); |
| 556 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 557 | #endif /* _PROTO_TASK_H */ |
| 558 | |
| 559 | /* |
| 560 | * Local variables: |
| 561 | * c-indent-level: 8 |
| 562 | * c-basic-offset: 8 |
| 563 | * End: |
| 564 | */ |