diff options
author | Richard Braun <rbraun@sceen.net> | 2019-01-17 01:47:51 +0100 |
---|---|---|
committer | Richard Braun <rbraun@sceen.net> | 2019-01-17 01:47:51 +0100 |
commit | ddd03534471b9f092dac144fc05d727970236cf9 (patch) | |
tree | 3d70c51ff90af7c068a8ba36642163ad4b47083e /kern/thread.c | |
parent | f53f22632e1ef6c6b35ed333db581248cc6b54a8 (diff) |
Replace "awaken" with "awoken"
See https://www.merriam-webster.com/words-at-play/usage-awaken-awoken-awakened.
Diffstat (limited to 'kern/thread.c')
-rw-r--r-- | kern/thread.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kern/thread.c b/kern/thread.c index 498aae41..d592b72e 100644 --- a/kern/thread.c +++ b/kern/thread.c @@ -1545,7 +1545,7 @@ static struct thread_runq * thread_sched_idle_select_runq(struct thread *thread) { (void)thread; - panic("thread: idler threads cannot be awaken"); + panic("thread: idler threads cannot be awoken"); } static noreturn void |