diff options
Diffstat (limited to 'kern/thread.h')
-rw-r--r-- | kern/thread.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kern/thread.h b/kern/thread.h index ea6c82e4..0efb8268 100644 --- a/kern/thread.h +++ b/kern/thread.h @@ -239,9 +239,9 @@ void thread_wakeup(struct thread *thread); /* * Start running threads on the local processor. * - * Interrupts must be enabled when calling this function. + * Interrupts must be disabled when calling this function. */ -void __noreturn thread_run(void); +void __noreturn thread_run_scheduler(void); /* * Make the calling thread release the processor. |