From 4d1b1d8b011d12f878bbc1ed9c7a4cdc9eb07d29 Mon Sep 17 00:00:00 2001 From: Johnny Willemsen Date: Sun, 16 Mar 2003 09:14:42 +0000 Subject: ChangeLogTag: Sun Mar 16 09:12:12 UTC 2002 Johnny Willemsen --- ChangeLog | 4 ++++ ace/OS.i | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index fa556730735..31f8a3a80d0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Sun Mar 16 10:12:12 2003 Johnny Willemsen + + * ace/OS.i (recursive_mutex_cond_unlock): Fixed typo + Sat Mar 15 13:50:18 2003 Steve Huston * tests/tests.mpc: Added Recursive_Condition_Bug_Test. diff --git a/ace/OS.i b/ace/OS.i index 4b8cf137c92..ae42783a252 100644 --- a/ace/OS.i +++ b/ace/OS.i @@ -2628,7 +2628,7 @@ ACE_OS::recursive_mutex_cond_unlock (ACE_recursive_thread_mutex_t *m, // it. Remember how many times, and reacquire it that many more times when // the condition is signaled. state.relock_count_ = 0; - while (m->LockCount > 0 && m->RecusionCount > 1) + while (m->LockCount > 0 && m->RecursionCount > 1) { // This may fail if the current thread doesn't own the mutex. If it // does fail, it'll be on the first try, so don't worry about resetting -- cgit v1.2.1