summaryrefslogtreecommitdiff
path: root/ACE/examples/Threads/recursive_mutex.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/examples/Threads/recursive_mutex.cpp')
-rw-r--r--ACE/examples/Threads/recursive_mutex.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ACE/examples/Threads/recursive_mutex.cpp b/ACE/examples/Threads/recursive_mutex.cpp
index 6ffc7670776..9c30e6e975d 100644
--- a/ACE/examples/Threads/recursive_mutex.cpp
+++ b/ACE/examples/Threads/recursive_mutex.cpp
@@ -62,7 +62,7 @@ recursive_worker (size_t nesting_level,
"(%P|%t) = trying to acquire, nesting = %d, thread id = %u\n",
rm->get_nesting_level (), rm->get_thread_id ()));
{
- // This illustrates the use of the ACE_Guard<LOCK> with an
+ // This illustrates the use of the ACE_GUARD with an
// ACE_Recursive_Thread_Mutex.
ACE_GUARD (ACE_Recursive_Thread_Mutex, ace_mon, *rm);
ACE_DEBUG ((LM_DEBUG,