|
|
| version 1.1.1.1.2.6, 2011/09/09 14:46:25 | version 1.2.2.3, 2011/10/04 14:17:32 |
|---|---|
| Line 104 schedRegisterHooks(sched_root_task_t * __restrict root | Line 104 schedRegisterHooks(sched_root_task_t * __restrict root |
| root->root_hooks.hook_exec.cancel = sched_hook_cancel; | root->root_hooks.hook_exec.cancel = sched_hook_cancel; |
| root->root_hooks.hook_exec.fetch = sched_hook_fetch; | root->root_hooks.hook_exec.fetch = sched_hook_fetch; |
| root->root_hooks.hook_exec.exception = sched_hook_exception; | |
| root->root_hooks.hook_root.init = sched_hook_init; | root->root_hooks.hook_root.init = sched_hook_init; |
| root->root_hooks.hook_root.fini = sched_hook_fini; | root->root_hooks.hook_root.fini = sched_hook_fini; |
| Line 322 schedCancelby(sched_root_task_t * __restrict root, sch | Line 323 schedCancelby(sched_root_task_t * __restrict root, sch |
| break; | break; |
| } | } |
| } else if (criteria == CRITERIA_FD) { | } else if (criteria == CRITERIA_FD) { |
| if (TASK_FD(task) == (u_long) param) { | if (TASK_FD(task) == (int) param) { |
| flg++; | flg++; |
| break; | break; |
| } | } |
| Line 378 schedRun(sched_root_task_t * __restrict root, volatile | Line 379 schedRun(sched_root_task_t * __restrict root, volatile |
| return -1; | return -1; |
| if (root->root_hooks.hook_exec.fetch) { | if (root->root_hooks.hook_exec.fetch) { |
| if (killState) | if (killState) |
| while (!*killState && (task = root->root_hooks.hook_exec.fetch(root, NULL))) | while (!*killState) { |
| schedCall(task); | if ((task = root->root_hooks.hook_exec.fetch(root, NULL))) |
| schedCall(task); | |
| } | |
| else | else |
| while ((task = root->root_hooks.hook_exec.fetch(root, NULL))) | while ((task = root->root_hooks.hook_exec.fetch(root, NULL))) |
| schedCall(task); | schedCall(task); |