2006-06-26 00:48:02 +00:00
|
|
|
/*
|
|
|
|
include/proto/task.h
|
|
|
|
Functions for task management.
|
|
|
|
|
2007-04-29 08:41:56 +00:00
|
|
|
Copyright (C) 2000-2007 Willy Tarreau - w@1wt.eu
|
2006-06-26 00:48:02 +00:00
|
|
|
|
|
|
|
This library is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU Lesser General Public
|
|
|
|
License as published by the Free Software Foundation, version 2.1
|
|
|
|
exclusively.
|
|
|
|
|
|
|
|
This library is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
Lesser General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
|
|
License along with this library; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _PROTO_TASK_H
|
|
|
|
#define _PROTO_TASK_H
|
|
|
|
|
|
|
|
|
|
|
|
#include <sys/time.h>
|
2006-06-29 16:54:54 +00:00
|
|
|
|
|
|
|
#include <common/config.h>
|
2006-06-29 15:53:05 +00:00
|
|
|
#include <common/memory.h>
|
2007-04-29 08:41:56 +00:00
|
|
|
#include <common/mini-clist.h>
|
|
|
|
#include <common/standard.h>
|
|
|
|
|
2006-06-29 16:54:54 +00:00
|
|
|
#include <types/task.h>
|
2006-06-26 00:48:02 +00:00
|
|
|
|
2007-04-29 08:41:56 +00:00
|
|
|
extern void *run_queue;
|
|
|
|
|
|
|
|
/* needed later */
|
|
|
|
void *tree_delete(void *node);
|
2006-06-26 00:48:02 +00:00
|
|
|
|
|
|
|
/* puts the task <t> in run queue <q>, and returns <t> */
|
2007-04-30 11:15:14 +00:00
|
|
|
#define task_wakeup _task_wakeup
|
|
|
|
struct task *_task_wakeup(struct task *t);
|
|
|
|
static inline struct task *__task_wakeup(struct task *t)
|
2006-06-26 00:48:02 +00:00
|
|
|
{
|
|
|
|
if (t->state == TASK_RUNNING)
|
|
|
|
return t;
|
2007-04-29 08:41:56 +00:00
|
|
|
|
|
|
|
if (t->qlist.p != NULL)
|
|
|
|
DLIST_DEL(&t->qlist);
|
|
|
|
|
|
|
|
DLIST_ADD(run_queue, &t->qlist);
|
|
|
|
t->state = TASK_RUNNING;
|
|
|
|
|
|
|
|
if (likely(t->wq)) {
|
|
|
|
tree_delete(t->wq);
|
|
|
|
t->wq = NULL;
|
2006-06-26 00:48:02 +00:00
|
|
|
}
|
2007-04-29 08:41:56 +00:00
|
|
|
|
|
|
|
return t;
|
2006-06-26 00:48:02 +00:00
|
|
|
}
|
|
|
|
|
2007-04-29 08:41:56 +00:00
|
|
|
/* removes the task <t> from the run queue if it was in it.
|
|
|
|
* returns <t>.
|
2006-06-26 00:48:02 +00:00
|
|
|
*/
|
2007-04-29 08:41:56 +00:00
|
|
|
static inline struct task *task_sleep(struct task *t)
|
2006-06-26 00:48:02 +00:00
|
|
|
{
|
|
|
|
if (t->state == TASK_RUNNING) {
|
2007-04-29 08:41:56 +00:00
|
|
|
DLIST_DEL(&t->qlist);
|
|
|
|
t->qlist.p = NULL;
|
|
|
|
t->state = TASK_IDLE;
|
2006-06-26 00:48:02 +00:00
|
|
|
}
|
2007-04-29 08:41:56 +00:00
|
|
|
return t;
|
2006-06-26 00:48:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2007-04-29 08:41:56 +00:00
|
|
|
* unlinks the task from wherever it is queued :
|
|
|
|
* - eternity_queue, run_queue
|
|
|
|
* - wait queue : wq not null => remove carrier node too
|
|
|
|
* A pointer to the task itself is returned.
|
2006-06-26 00:48:02 +00:00
|
|
|
*/
|
|
|
|
static inline struct task *task_delete(struct task *t)
|
|
|
|
{
|
2007-04-29 08:41:56 +00:00
|
|
|
if (t->qlist.p != NULL) {
|
|
|
|
DLIST_DEL(&t->qlist);
|
|
|
|
t->qlist.p = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (t->wq) {
|
|
|
|
tree_delete(t->wq);
|
|
|
|
t->wq = NULL;
|
|
|
|
}
|
2006-06-26 00:48:02 +00:00
|
|
|
return t;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* frees a task. Its context must have been freed since it will be lost.
|
|
|
|
*/
|
|
|
|
static inline void task_free(struct task *t)
|
|
|
|
{
|
|
|
|
pool_free(task, t);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* inserts <task> into its assigned wait queue, where it may already be. In this case, it
|
|
|
|
* may be only moved or left where it was, depending on its timing requirements.
|
|
|
|
* <task> is returned.
|
|
|
|
*/
|
|
|
|
struct task *task_queue(struct task *task);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This does 4 things :
|
|
|
|
* - wake up all expired tasks
|
|
|
|
* - call all runnable tasks
|
|
|
|
* - call maintain_proxies() to enable/disable the listeners
|
|
|
|
* - return the delay till next event in ms, -1 = wait indefinitely
|
|
|
|
* Note: this part should be rewritten with the O(ln(n)) scheduler.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
int process_runnable_tasks();
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* _PROTO_TASK_H */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Local variables:
|
|
|
|
* c-indent-level: 8
|
|
|
|
* c-basic-offset: 8
|
|
|
|
* End:
|
|
|
|
*/
|