|
|
| version 1.13, 2012/08/08 08:25:39 | version 1.14, 2012/08/08 23:04:41 |
|---|---|
| Line 682 schedTermCondition(sched_root_task_t * __restrict root | Line 682 schedTermCondition(sched_root_task_t * __restrict root |
| } | } |
| /* | /* |
| * schedMissEvents() - Set new miss events rate for regular tasks | |
| * | |
| * @root = root task | |
| * @missEvents = maximum number of missed events before firing tasks | |
| * return: -1 error or 0 ok | |
| */ | |
| inline int | |
| schedMissEvents(sched_root_task_t * __restrict root, u_int missEvents) | |
| { | |
| if (!root) | |
| return -1; | |
| root->root_miss = missEvents; | |
| return 0; | |
| } | |
| /* | |
| * schedResumeby() - Resume suspended task | * schedResumeby() - Resume suspended task |
| * | * |
| * @root = root task | * @root = root task |