summaryrefslogtreecommitdiff
path: root/ACE/examples/APG/Threads/Guards.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/examples/APG/Threads/Guards.cpp')
-rw-r--r--ACE/examples/APG/Threads/Guards.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/ACE/examples/APG/Threads/Guards.cpp b/ACE/examples/APG/Threads/Guards.cpp
index 7ef23e1e4da..1813dd68843 100644
--- a/ACE/examples/APG/Threads/Guards.cpp
+++ b/ACE/examples/APG/Threads/Guards.cpp
@@ -50,7 +50,9 @@ HA_Device_Repository::update_device (int device_id)
// Construct a guard specifying the type of the mutex as
// a template parameter and passing in the mutex to hold
// as a parameter.
+ // FUZZ: disable check_for_ACE_Guard
ACE_Guard<ACE_Thread_Mutex> guard (this->mutex_);
+ // FUZZ: enable check_for_ACE_Guard
// This can throw an exception that is not caught here.
ACE_NEW_RETURN (object, Object, -1);