source:
bootcd/isolinux/syslinux-6.03/core/thread/root_thread.c
Last change on this file was e16e8f2, checked in by , 3 years ago | |
---|---|
|
|
File size: 264 bytes |
Line | |
---|---|
1 | #include "thread.h" |
2 | |
3 | struct thread __root_thread = { |
4 | .thread_magic = THREAD_MAGIC, |
5 | .name = "root", |
6 | .list = { .next = &__root_thread.list, .prev = &__root_thread.list }, |
7 | .blocked = NULL, |
8 | .prio = 0, |
9 | }; |
10 | |
11 | struct thread *__current = &__root_thread; |
Note: See TracBrowser
for help on using the repository browser.