diff options
Diffstat (limited to 'libjava/posix-threads.cc')
-rw-r--r-- | libjava/posix-threads.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libjava/posix-threads.cc b/libjava/posix-threads.cc index e6b4b25..e5a1668 100644 --- a/libjava/posix-threads.cc +++ b/libjava/posix-threads.cc @@ -214,8 +214,8 @@ _Jv_CondNotify (_Jv_ConditionVariable_t *cv, _Jv_Mutex_t *mu) pthread_cond_signal (&target->wait_cond); pthread_mutex_unlock (&target->wait_mutex); - // Two successive notify() calls should not be delivered to the same - // thread, so we remove the target thread from the cv wait list now. + // Two concurrent notify() calls must not be delivered to the same + // thread, so remove the target thread from the cv wait list now. if (prev == NULL) cv->first = target->next; else |