X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=sched.h;h=bd1ad796dfb4fa015e0053c05d83eeb5f5150704;hp=8ed4cd126f73e87cfb2aefc5385856200eedbedd;hb=65572373b52dad3f2ff3b8302a6f7491553f07b1;hpb=148c7c722fd5795228f586b6ef8d953662b68224 diff --git a/sched.h b/sched.h index 8ed4cd12..bd1ad796 100644 --- a/sched.h +++ b/sched.h @@ -8,22 +8,20 @@ struct sched { struct task { void *private_data; - unsigned flags; int ret; void (*pre_select)(struct sched *s, struct task *t); void (*post_select)(struct sched *s, struct task *t); - void (*error_handler)(struct task *t); + void (*event_handler)(struct task *t); struct list_head pre_select_node; struct list_head post_select_node; char status[MAXLINE]; }; -enum task_flags { - PRE_ADD_TAIL = 1, - POST_ADD_TAIL = 2, -}; +extern struct timeval *now; void *register_task(struct task *t); void unregister_task(struct task *t); int sched(struct sched *s); void init_sched(void); +char *get_task_list(void); +int kill_task(char *id);