diff options
Diffstat (limited to 'src/kernel/include/thread.h')
-rw-r--r-- | src/kernel/include/thread.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/kernel/include/thread.h b/src/kernel/include/thread.h index 09995fd..f9df0ea 100644 --- a/src/kernel/include/thread.h +++ b/src/kernel/include/thread.h @@ -36,7 +36,6 @@ typedef struct thread { struct thread *next_in_queue; struct thread *next_in_proc; - void* waiting_on; bool must_exit; } thread_t; @@ -46,6 +45,8 @@ void threading_setup(entry_t cont, void* data); // never returns thread_t *new_thread(entry_t entry, void* data); // thread is PAUSED, and must be started with start_thread void start_thread(thread_t *t); +void irq0_handler(registers_t *regs, int crit_level); + extern thread_t *current_thread; void yield(); @@ -60,6 +61,7 @@ void usleep(int usecs); // killed and must terminate its kernel-land processing as soon as possible. bool wait_on(void* x); // true : resumed normally, false : resumed because thread was killed, or someone else already waiting +bool wait_on_many(void** x, size_t count); // true only if we could wait on ALL objects bool resume_on(void* x); void kill_thread(thread_t *thread); // cannot be called for current thread |