blob: c1c4c07ec54d62a9b77b4141fb449307e1a84bb4 [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
Willy Tarreau24f4efa2010-08-27 17:56:48 +02002 * 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 Tarreaubaaee002006-06-26 02:48:02 +020021
22#ifndef _PROTO_TASK_H
23#define _PROTO_TASK_H
24
25
26#include <sys/time.h>
Willy Tarreaue3ba5f02006-06-29 18:54:54 +020027
28#include <common/config.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020029#include <common/memory.h>
Willy Tarreau96bcfd72007-04-29 10:41:56 +020030#include <common/mini-clist.h>
31#include <common/standard.h>
Willy Tarreaud0a201b2009-03-08 15:53:06 +010032#include <common/ticks.h>
Emeric Brunc60def82017-09-27 14:59:38 +020033#include <common/hathreads.h>
34
Willy Tarreau8d388052017-11-05 13:34:20 +010035#include <eb32sctree.h>
Willy Tarreau45cb4fb2009-10-26 21:10:04 +010036#include <eb32tree.h>
Willy Tarreau96bcfd72007-04-29 10:41:56 +020037
Willy Tarreaueb118892014-11-13 16:57:19 +010038#include <types/global.h>
Willy Tarreaue3ba5f02006-06-29 18:54:54 +020039#include <types/task.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020040
Willy Tarreaud0a201b2009-03-08 15:53:06 +010041/* 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 Tarreaue35c94a2009-03-21 10:01:42 +010052 * 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 Tarreaud0a201b2009-03-08 15:53:06 +010055 *
Willy Tarreaue35c94a2009-03-21 10:01:42 +010056 * 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 Tarreaud0a201b2009-03-08 15:53:06 +010063 *
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 Tarreaue35c94a2009-03-21 10:01:42 +010075 * - node->key is always before or equal to timer
Willy Tarreaud0a201b2009-03-08 15:53:06 +010076 *
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 Tarreaue35c94a2009-03-21 10:01:42 +010081/* The farthest we can look back in a timer tree */
82#define TIMER_LOOK_BACK (1U << 31)
Willy Tarreaud0a201b2009-03-08 15:53:06 +010083
84/* a few exported variables */
Willy Tarreaua4613182009-03-21 18:13:21 +010085extern unsigned int nb_tasks; /* total number of tasks */
Christopher Faulet3911ee82017-11-14 10:26:53 +010086extern unsigned long active_tasks_mask; /* Mask of threads with active tasks */
Christopher Faulet34c5cc92016-12-06 09:15:30 +010087extern unsigned int tasks_run_queue; /* run queue size */
88extern unsigned int tasks_run_queue_cur;
Willy Tarreauc7bdf092009-03-21 18:33:52 +010089extern unsigned int nb_tasks_cur;
Willy Tarreau91e99932008-06-30 07:51:00 +020090extern unsigned int niced_tasks; /* number of niced tasks in the run queue */
Willy Tarreaubafbe012017-11-24 17:34:44 +010091extern struct pool_head *pool_head_task;
92extern struct pool_head *pool_head_notification;
Olivier Houchard9b36cb42018-05-04 15:46:16 +020093extern THREAD_LOCAL struct task *curr_task; /* task currently running or NULL */
94extern THREAD_LOCAL struct eb32sc_node *rq_next; /* Next task to be potentially run */
Christopher Faulet9dcf9b62017-11-13 10:34:01 +010095
96__decl_hathreads(extern HA_SPINLOCK_T rq_lock); /* spin lock related to run queue */
97__decl_hathreads(extern HA_SPINLOCK_T wq_lock); /* spin lock related to wait queue */
Willy Tarreauc6ca1a02007-05-13 19:43:47 +020098
Willy Tarreau4726f532009-03-07 17:25:21 +010099/* return 0 if task is in run queue, otherwise non-zero */
100static inline int task_in_rq(struct task *t)
101{
102 return t->rq.node.leaf_p != NULL;
103}
104
105/* return 0 if task is in wait queue, otherwise non-zero */
106static inline int task_in_wq(struct task *t)
107{
108 return t->wq.node.leaf_p != NULL;
109}
110
Willy Tarreaufdccded2008-08-29 18:19:04 +0200111/* puts the task <t> in run queue with reason flags <f>, and returns <t> */
Willy Tarreau4df82062008-08-29 15:26:14 +0200112struct task *__task_wakeup(struct task *t);
Willy Tarreaufdccded2008-08-29 18:19:04 +0200113static inline struct task *task_wakeup(struct task *t, unsigned int f)
Willy Tarreau4df82062008-08-29 15:26:14 +0200114{
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100115 HA_SPIN_LOCK(TASK_RQ_LOCK, &rq_lock);
Emeric Brunc60def82017-09-27 14:59:38 +0200116
Emeric Brun01948972017-03-30 15:37:25 +0200117 /* If task is running, we postpone the call
118 * and backup the state.
119 */
120 if (unlikely(t->state & TASK_RUNNING)) {
121 t->pending_state |= f;
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100122 HA_SPIN_UNLOCK(TASK_RQ_LOCK, &rq_lock);
Emeric Brun01948972017-03-30 15:37:25 +0200123 return t;
124 }
Willy Tarreau4726f532009-03-07 17:25:21 +0100125 if (likely(!task_in_rq(t)))
Willy Tarreaufdccded2008-08-29 18:19:04 +0200126 __task_wakeup(t);
127 t->state |= f;
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100128 HA_SPIN_UNLOCK(TASK_RQ_LOCK, &rq_lock);
Emeric Brunc60def82017-09-27 14:59:38 +0200129
Willy Tarreaufdccded2008-08-29 18:19:04 +0200130 return t;
Willy Tarreau4df82062008-08-29 15:26:14 +0200131}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200132
Willy Tarreauf65610a2017-10-31 16:06:06 +0100133/* change the thread affinity of a task to <thread_mask> */
Emeric Brunc60def82017-09-27 14:59:38 +0200134static inline void task_set_affinity(struct task *t, unsigned long thread_mask)
135{
Willy Tarreauf65610a2017-10-31 16:06:06 +0100136 t->thread_mask = thread_mask;
Emeric Brunc60def82017-09-27 14:59:38 +0200137}
Willy Tarreauf65610a2017-10-31 16:06:06 +0100138
Willy Tarreau4726f532009-03-07 17:25:21 +0100139/*
140 * Unlink the task from the wait queue, and possibly update the last_timer
141 * pointer. A pointer to the task itself is returned. The task *must* already
142 * be in the wait queue before calling this function. If unsure, use the safer
143 * task_unlink_wq() function.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200144 */
Willy Tarreau4726f532009-03-07 17:25:21 +0100145static inline struct task *__task_unlink_wq(struct task *t)
146{
147 eb32_delete(&t->wq);
Willy Tarreau4726f532009-03-07 17:25:21 +0100148 return t;
149}
150
151static inline struct task *task_unlink_wq(struct task *t)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200152{
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100153 HA_SPIN_LOCK(TASK_WQ_LOCK, &wq_lock);
Willy Tarreau4726f532009-03-07 17:25:21 +0100154 if (likely(task_in_wq(t)))
155 __task_unlink_wq(t);
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100156 HA_SPIN_UNLOCK(TASK_WQ_LOCK, &wq_lock);
Willy Tarreau96bcfd72007-04-29 10:41:56 +0200157 return t;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200158}
159
160/*
Christopher Faulet34c5cc92016-12-06 09:15:30 +0100161 * Unlink the task from the run queue. The tasks_run_queue size and number of
162 * niced tasks are updated too. A pointer to the task itself is returned. The
163 * task *must* already be in the run queue before calling this function. If
164 * unsure, use the safer task_unlink_rq() function. Note that the pointer to the
165 * next run queue entry is neither checked nor updated.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200166 */
Willy Tarreau4726f532009-03-07 17:25:21 +0100167static inline struct task *__task_unlink_rq(struct task *t)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200168{
Willy Tarreau8d388052017-11-05 13:34:20 +0100169 eb32sc_delete(&t->rq);
Christopher Faulet34c5cc92016-12-06 09:15:30 +0100170 tasks_run_queue--;
Willy Tarreau4726f532009-03-07 17:25:21 +0100171 if (likely(t->nice))
172 niced_tasks--;
Willy Tarreauce44f122008-07-05 18:16:19 +0200173 return t;
174}
Willy Tarreau9789f7b2008-06-24 08:17:16 +0200175
Willy Tarreau501260b2015-02-23 16:07:01 +0100176/* This function unlinks task <t> from the run queue if it is in it. It also
177 * takes care of updating the next run queue task if it was this task.
178 */
Willy Tarreau4726f532009-03-07 17:25:21 +0100179static inline struct task *task_unlink_rq(struct task *t)
180{
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100181 HA_SPIN_LOCK(TASK_RQ_LOCK, &rq_lock);
Olivier Houchard9b36cb42018-05-04 15:46:16 +0200182 if (likely(task_in_rq(t))) {
183 if (&t->rq == rq_next)
184 rq_next = eb32sc_next(rq_next, tid_bit);
Willy Tarreau4726f532009-03-07 17:25:21 +0100185 __task_unlink_rq(t);
Olivier Houchard9b36cb42018-05-04 15:46:16 +0200186 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100187 HA_SPIN_UNLOCK(TASK_RQ_LOCK, &rq_lock);
Willy Tarreau4726f532009-03-07 17:25:21 +0100188 return t;
189}
190
Willy Tarreauce44f122008-07-05 18:16:19 +0200191/*
192 * Unlinks the task and adjusts run queue stats.
193 * A pointer to the task itself is returned.
194 */
195static inline struct task *task_delete(struct task *t)
196{
Willy Tarreau4726f532009-03-07 17:25:21 +0100197 task_unlink_wq(t);
198 task_unlink_rq(t);
Willy Tarreau9789f7b2008-06-24 08:17:16 +0200199 return t;
200}
201
202/*
Willy Tarreaua4613182009-03-21 18:13:21 +0100203 * Initialize a new task. The bare minimum is performed (queue pointers and
204 * state). The task is returned. This function should not be used outside of
205 * task_new().
Willy Tarreau9789f7b2008-06-24 08:17:16 +0200206 */
Emeric Brunc60def82017-09-27 14:59:38 +0200207static inline struct task *task_init(struct task *t, unsigned long thread_mask)
Willy Tarreau9789f7b2008-06-24 08:17:16 +0200208{
Willy Tarreau4726f532009-03-07 17:25:21 +0100209 t->wq.node.leaf_p = NULL;
210 t->rq.node.leaf_p = NULL;
Emeric Brun01948972017-03-30 15:37:25 +0200211 t->pending_state = t->state = TASK_SLEEPING;
Willy Tarreauf65610a2017-10-31 16:06:06 +0100212 t->thread_mask = thread_mask;
Willy Tarreau91e99932008-06-30 07:51:00 +0200213 t->nice = 0;
Willy Tarreau3884cba2009-03-28 17:54:35 +0100214 t->calls = 0;
Willy Tarreauf4219992017-07-24 17:52:58 +0200215 t->expire = TICK_ETERNITY;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200216 return t;
217}
218
219/*
Willy Tarreaua4613182009-03-21 18:13:21 +0100220 * Allocate and initialise a new task. The new task is returned, or NULL in
221 * case of lack of memory. The task count is incremented. Tasks should only
222 * be allocated this way, and must be freed using task_free().
223 */
Emeric Brunc60def82017-09-27 14:59:38 +0200224static inline struct task *task_new(unsigned long thread_mask)
Willy Tarreaua4613182009-03-21 18:13:21 +0100225{
Willy Tarreaubafbe012017-11-24 17:34:44 +0100226 struct task *t = pool_alloc(pool_head_task);
Willy Tarreaua4613182009-03-21 18:13:21 +0100227 if (t) {
Emeric Brunc60def82017-09-27 14:59:38 +0200228 HA_ATOMIC_ADD(&nb_tasks, 1);
229 task_init(t, thread_mask);
Willy Tarreaua4613182009-03-21 18:13:21 +0100230 }
231 return t;
232}
233
234/*
235 * Free a task. Its context must have been freed since it will be lost.
236 * The task count is decremented.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200237 */
Olivier Houchard9b36cb42018-05-04 15:46:16 +0200238static inline void __task_free(struct task *t)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200239{
Willy Tarreaubafbe012017-11-24 17:34:44 +0100240 pool_free(pool_head_task, t);
Willy Tarreaueb118892014-11-13 16:57:19 +0100241 if (unlikely(stopping))
Willy Tarreaubafbe012017-11-24 17:34:44 +0100242 pool_flush(pool_head_task);
Emeric Brunc60def82017-09-27 14:59:38 +0200243 HA_ATOMIC_SUB(&nb_tasks, 1);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200244}
245
Olivier Houchard9b36cb42018-05-04 15:46:16 +0200246static inline void task_free(struct task *t)
247{
248 /* There's no need to protect t->state with a lock, as the task
249 * has to run on the current thread.
250 */
251 if (t == curr_task || !(t->state & TASK_RUNNING))
252 __task_free(t);
253 else
254 t->process = NULL;
255}
256
257
Willy Tarreau4726f532009-03-07 17:25:21 +0100258/* Place <task> into the wait queue, where it may already be. If the expiration
Willy Tarreau531cf0c2009-03-08 16:35:27 +0100259 * timer is infinite, do nothing and rely on wake_expired_task to clean up.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200260 */
Willy Tarreau531cf0c2009-03-08 16:35:27 +0100261void __task_queue(struct task *task);
262static inline void task_queue(struct task *task)
263{
264 /* If we already have a place in the wait queue no later than the
265 * timeout we're trying to set, we'll stay there, because it is very
266 * unlikely that we will reach the timeout anyway. If the timeout
267 * has been disabled, it's useless to leave the queue as well. We'll
268 * rely on wake_expired_tasks() to catch the node and move it to the
269 * proper place should it ever happen. Finally we only add the task
270 * to the queue if it was not there or if it was further than what
271 * we want.
272 */
273 if (!tick_isset(task->expire))
274 return;
275
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100276 HA_SPIN_LOCK(TASK_WQ_LOCK, &wq_lock);
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100277 if (!task_in_wq(task) || tick_is_lt(task->expire, task->wq.key))
Willy Tarreau531cf0c2009-03-08 16:35:27 +0100278 __task_queue(task);
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100279 HA_SPIN_UNLOCK(TASK_WQ_LOCK, &wq_lock);
Willy Tarreau531cf0c2009-03-08 16:35:27 +0100280}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200281
Willy Tarreau26e48812011-07-25 14:30:42 +0200282/* Ensure <task> will be woken up at most at <when>. If the task is already in
283 * the run queue (but not running), nothing is done. It may be used that way
284 * with a delay : task_schedule(task, tick_add(now_ms, delay));
285 */
286static inline void task_schedule(struct task *task, int when)
287{
Emeric Brunc60def82017-09-27 14:59:38 +0200288 /* TODO: mthread, check if there is no tisk with this test */
Willy Tarreau26e48812011-07-25 14:30:42 +0200289 if (task_in_rq(task))
290 return;
291
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100292 HA_SPIN_LOCK(TASK_WQ_LOCK, &wq_lock);
Willy Tarreau26e48812011-07-25 14:30:42 +0200293 if (task_in_wq(task))
294 when = tick_first(when, task->expire);
295
296 task->expire = when;
297 if (!task_in_wq(task) || tick_is_lt(task->expire, task->wq.key))
298 __task_queue(task);
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100299 HA_SPIN_UNLOCK(TASK_WQ_LOCK, &wq_lock);
Willy Tarreau26e48812011-07-25 14:30:42 +0200300}
301
Thierry FOURNIERd6975962017-07-12 14:31:10 +0200302/* This function register a new signal. "lua" is the current lua
303 * execution context. It contains a pointer to the associated task.
304 * "link" is a list head attached to an other task that must be wake
305 * the lua task if an event occurs. This is useful with external
306 * events like TCP I/O or sleep functions. This funcion allocate
307 * memory for the signal.
308 */
309static inline struct notification *notification_new(struct list *purge, struct list *event, struct task *wakeup)
310{
Willy Tarreaubafbe012017-11-24 17:34:44 +0100311 struct notification *com = pool_alloc(pool_head_notification);
Thierry FOURNIERd6975962017-07-12 14:31:10 +0200312 if (!com)
313 return NULL;
314 LIST_ADDQ(purge, &com->purge_me);
315 LIST_ADDQ(event, &com->wake_me);
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100316 HA_SPIN_INIT(&com->lock);
Thierry FOURNIERd6975962017-07-12 14:31:10 +0200317 com->task = wakeup;
318 return com;
319}
320
321/* This function purge all the pending signals when the LUA execution
322 * is finished. This prevent than a coprocess try to wake a deleted
323 * task. This function remove the memory associated to the signal.
Thierry FOURNIERd5b79832017-12-10 17:14:07 +0100324 * The purge list is not locked because it is owned by only one
325 * process. before browsing this list, the caller must ensure to be
326 * the only one browser.
Thierry FOURNIERd6975962017-07-12 14:31:10 +0200327 */
328static inline void notification_purge(struct list *purge)
329{
330 struct notification *com, *back;
331
332 /* Delete all pending communication signals. */
333 list_for_each_entry_safe(com, back, purge, purge_me) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100334 HA_SPIN_LOCK(NOTIF_LOCK, &com->lock);
Thierry FOURNIERd6975962017-07-12 14:31:10 +0200335 LIST_DEL(&com->purge_me);
Thierry FOURNIER738a6d72017-07-17 00:14:07 +0200336 if (!com->task) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100337 HA_SPIN_UNLOCK(NOTIF_LOCK, &com->lock);
Willy Tarreaubafbe012017-11-24 17:34:44 +0100338 pool_free(pool_head_notification, com);
Thierry FOURNIER738a6d72017-07-17 00:14:07 +0200339 continue;
340 }
341 com->task = NULL;
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100342 HA_SPIN_UNLOCK(NOTIF_LOCK, &com->lock);
Thierry FOURNIERd6975962017-07-12 14:31:10 +0200343 }
344}
345
Thierry FOURNIERcb146882017-12-10 17:10:57 +0100346/* In some cases, the disconnected notifications must be cleared.
347 * This function just release memory blocs. The purge list is not
348 * locked because it is owned by only one process. Before browsing
349 * this list, the caller must ensure to be the only one browser.
350 * The "com" is not locked because when com->task is NULL, the
351 * notification is no longer used.
352 */
353static inline void notification_gc(struct list *purge)
354{
355 struct notification *com, *back;
356
357 /* Delete all pending communication signals. */
358 list_for_each_entry_safe (com, back, purge, purge_me) {
359 if (com->task)
360 continue;
361 LIST_DEL(&com->purge_me);
362 pool_free(pool_head_notification, com);
363 }
364}
365
Thierry FOURNIERd6975962017-07-12 14:31:10 +0200366/* This function sends signals. It wakes all the tasks attached
367 * to a list head, and remove the signal, and free the used
Thierry FOURNIERd5b79832017-12-10 17:14:07 +0100368 * memory. The wake list is not locked because it is owned by
369 * only one process. before browsing this list, the caller must
370 * ensure to be the only one browser.
Thierry FOURNIERd6975962017-07-12 14:31:10 +0200371 */
372static inline void notification_wake(struct list *wake)
373{
374 struct notification *com, *back;
375
376 /* Wake task and delete all pending communication signals. */
377 list_for_each_entry_safe(com, back, wake, wake_me) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100378 HA_SPIN_LOCK(NOTIF_LOCK, &com->lock);
Thierry FOURNIERd6975962017-07-12 14:31:10 +0200379 LIST_DEL(&com->wake_me);
Thierry FOURNIER738a6d72017-07-17 00:14:07 +0200380 if (!com->task) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100381 HA_SPIN_UNLOCK(NOTIF_LOCK, &com->lock);
Willy Tarreaubafbe012017-11-24 17:34:44 +0100382 pool_free(pool_head_notification, com);
Thierry FOURNIER738a6d72017-07-17 00:14:07 +0200383 continue;
384 }
Thierry FOURNIERd6975962017-07-12 14:31:10 +0200385 task_wakeup(com->task, TASK_WOKEN_MSG);
Thierry FOURNIER738a6d72017-07-17 00:14:07 +0200386 com->task = NULL;
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100387 HA_SPIN_UNLOCK(NOTIF_LOCK, &com->lock);
Thierry FOURNIERd6975962017-07-12 14:31:10 +0200388 }
389}
390
Willy Tarreaubaaee002006-06-26 02:48:02 +0200391/*
Willy Tarreau918ff602011-07-25 16:33:49 +0200392 * This does 3 things :
Willy Tarreaubaaee002006-06-26 02:48:02 +0200393 * - wake up all expired tasks
394 * - call all runnable tasks
Willy Tarreaud825eef2007-05-12 22:35:00 +0200395 * - return the date of next event in <next> or eternity.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200396 */
397
Thierry FOURNIER9cf7c4b2014-12-15 13:26:01 +0100398void process_runnable_tasks();
Willy Tarreaubaaee002006-06-26 02:48:02 +0200399
Willy Tarreau58b458d2008-06-29 22:40:23 +0200400/*
401 * Extract all expired timers from the timer queue, and wakes up all
402 * associated tasks. Returns the date of next event (or eternity).
403 */
Thierry FOURNIER9cf7c4b2014-12-15 13:26:01 +0100404int wake_expired_tasks();
Willy Tarreau58b458d2008-06-29 22:40:23 +0200405
Willy Tarreaud0a201b2009-03-08 15:53:06 +0100406/* Perform minimal initializations, report 0 in case of error, 1 if OK. */
407int init_task();
Willy Tarreaubaaee002006-06-26 02:48:02 +0200408
409#endif /* _PROTO_TASK_H */
410
411/*
412 * Local variables:
413 * c-indent-level: 8
414 * c-basic-offset: 8
415 * End:
416 */