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/semaphore.h | |
parent | f53f22632e1ef6c6b35ed333db581248cc6b54a8 (diff) |
Replace "awaken" with "awoken"
See https://www.merriam-webster.com/words-at-play/usage-awaken-awoken-awakened.
Diffstat (limited to 'kern/semaphore.h')
-rw-r--r-- | kern/semaphore.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kern/semaphore.h b/kern/semaphore.h index a18e4701..708417a8 100644 --- a/kern/semaphore.h +++ b/kern/semaphore.h @@ -88,7 +88,7 @@ int semaphore_timedwait(struct semaphore *semaphore, uint64_t ticks); * Signal a semaphore. * * This function attempts to increment the semaphore value. If successful, and - * if one or more threads are waiting on the semaphore, one of them is awaken. + * if one or more threads are waiting on the semaphore, one of them is awoken. * * A semaphore may safely be signalled from interrupt context. * |