diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 1999-01-16 23:28:40 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 1999-01-16 23:28:40 +0000 |
commit | 6614e82b2e53c21c152c1e540e839fa076db1e9a (patch) | |
tree | 90dab04e1db603fd4dafc096c74e3c6d7b616a25 /ace/Proactor.cpp | |
parent | e1ac025776e52e23c29f747fdcf4d1448619ff6d (diff) | |
download | ATCD-6614e82b2e53c21c152c1e540e839fa076db1e9a.tar.gz |
.
Diffstat (limited to 'ace/Proactor.cpp')
-rw-r--r-- | ace/Proactor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ace/Proactor.cpp b/ace/Proactor.cpp index 8af2f91f548..11e57845a3a 100644 --- a/ace/Proactor.cpp +++ b/ace/Proactor.cpp @@ -658,7 +658,7 @@ ACE_Proactor::schedule_timer (ACE_Handler &handler, this->timer_queue_->gettimeofday () + time; // Only one guy goes in here at a time - ACE_GUARD_RETURN (ACE_Recursive_Thread_Mutex, ace_mon, this->timer_queue_->mutex (), -1); + ACE_GUARD_RETURN (ACE_SYNCH_RECURSIVE_MUTEX, ace_mon, this->timer_queue_->mutex (), -1); // Schedule the timer long result = this->timer_queue_->schedule (&handler, |