Changes in uspace/srv/ns/task.c [b72efe8:c7bbf029] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/ns/task.c
rb72efe8 rc7bbf029 189 189 } pending_wait_t; 190 190 191 static li st_t pending_wait;191 static link_t pending_wait; 192 192 193 193 int task_init(void) … … 212 212 void process_pending_wait(void) 213 213 { 214 link_t *cur; 214 215 task_exit_t texit; 215 216 216 217 loop: 217 list_foreach(pending_wait, cur) {218 for (cur = pending_wait.next; cur != &pending_wait; cur = cur->next) { 218 219 pending_wait_t *pr = list_get_instance(cur, pending_wait_t, link); 219 220
Note:
See TracChangeset
for help on using the changeset viewer.