source: bootcd/isolinux/syslinux-6.03/core/thread/root_thread.c

Last change on this file was e16e8f2, checked in by Edwin Eefting <edwin@datux.nl>, 3 years ago

bootstuff

  • Property mode set to 100644
File size: 264 bytes
Line 
1#include "thread.h"
2
3struct 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
11struct thread *__current = &__root_thread;
Note: See TracBrowser for help on using the repository browser.