Changes in kernel/generic/src/udebug/udebug.c [55b77d9:96b02eb9] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/udebug/udebug.c
r55b77d9 r96b02eb9 406 406 407 407 /* Finish debugging of all userspace threads */ 408 list_foreach(task->threads, cur) { 408 link_t *cur; 409 for (cur = task->th_head.next; cur != &task->th_head; cur = cur->next) { 409 410 thread_t *thread = list_get_instance(cur, thread_t, th_link); 410 411
Note:
See TracChangeset
for help on using the changeset viewer.