Commit 8fa6019b authored by Fujii Masao's avatar Fujii Masao

Fix typos in comments.

Masahiko Sawada
parent 0777f7a2
...@@ -83,7 +83,7 @@ ConditionVariablePrepareToSleep(ConditionVariable *cv) ...@@ -83,7 +83,7 @@ ConditionVariablePrepareToSleep(ConditionVariable *cv)
/*-------------------------------------------------------------------------- /*--------------------------------------------------------------------------
* Wait for the given condition variable to be signaled. This should be * Wait for the given condition variable to be signaled. This should be
* called in a predicate loop that tests for a specfic exit condition and * called in a predicate loop that tests for a specific exit condition and
* otherwise sleeps, like so: * otherwise sleeps, like so:
* *
* ConditionVariablePrepareToSleep(cv); [optional] * ConditionVariablePrepareToSleep(cv); [optional]
...@@ -108,7 +108,7 @@ ConditionVariableSleep(ConditionVariable *cv, uint32 wait_event_info) ...@@ -108,7 +108,7 @@ ConditionVariableSleep(ConditionVariable *cv, uint32 wait_event_info)
* return can be avoided by calling ConditionVariablePrepareToSleep(cv) * return can be avoided by calling ConditionVariablePrepareToSleep(cv)
* first. Whether it's worth doing that depends on whether you expect the * first. Whether it's worth doing that depends on whether you expect the
* condition to be met initially, in which case skipping the prepare * condition to be met initially, in which case skipping the prepare
* allows you to skip manipulation of the wait list, or not met intiailly, * allows you to skip manipulation of the wait list, or not met initially,
* in which case preparing first allows you to skip a spurious test of the * in which case preparing first allows you to skip a spurious test of the
* caller's exit condition. * caller's exit condition.
*/ */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment