version 1.1.1.1.2.7, 2011/09/12 08:06:19
|
version 1.2.2.2, 2011/10/04 13:50:05
|
Line 96 struct sched_HooksTask {
|
Line 96 struct sched_HooksTask {
|
sched_hook_func_t run; |
sched_hook_func_t run; |
/* fetch(sched_root_task_t *root, NULL) -> sched_task_t* */ |
/* fetch(sched_root_task_t *root, NULL) -> sched_task_t* */ |
sched_hook_func_t fetch; |
sched_hook_func_t fetch; |
|
/* exception(sched_root_task_t *root, NULL) -> int */ |
|
sched_hook_func_t exception; |
} hook_exec; |
} hook_exec; |
struct { |
struct { |
/* init(sched_root_task_t *root, void *data) -> int */ |
/* init(sched_root_task_t *root, void *data) -> int */ |
sched_hook_func_t init; |
sched_hook_func_t init; |
/* fini(sched_root_task_t *root, NULL) -> int */ |
/* fini(sched_root_task_t *root, NULL) -> int */ |
sched_hook_func_t fini; |
sched_hook_func_t fini; |
|
/* error(sched_root_task_t *root, int errno) -> int */ |
|
sched_hook_func_t error; |
} hook_root; |
} hook_root; |
}; |
}; |
typedef struct sched_HooksTask hooks_task_t; |
typedef struct sched_HooksTask hooks_task_t; |