#include <Lock.h>
Inheritance diagram for ACE_Adaptive_Lock:
Public Member Functions | |
virtual | ~ACE_Adaptive_Lock (void) |
virtual int | remove (void) |
virtual int | acquire (void) |
virtual int | tryacquire (void) |
virtual int | release (void) |
Release the lock. Returns -1 on failure. | |
virtual int | acquire_read (void) |
virtual int | acquire_write (void) |
virtual int | tryacquire_read (void) |
virtual int | tryacquire_write (void) |
virtual int | tryacquire_write_upgrade (void) |
void | dump (void) const |
Protected Member Functions | |
ACE_Adaptive_Lock (void) | |
Protected Attributes | |
ACE_Lock * | lock_ |
This class, as ACE_Lock, provide a set of general locking APIs. However, it defers our decision of what kind of lock to use to the run time and delegates all locking operations to the actual lock. Users must define a constructor in their subclass to initialize .
Definition at line 123 of file Lock.h.
|
You must also override the destructor function to match with how you construct the underneath . Definition at line 22 of file Lock.cpp.
00023 { 00024 } |
|
Create and initialize create the actual lcok used in the class. The default constructor simply set the to 0 (null). You must overwrite this method for this class to work. Definition at line 17 of file Lock.cpp.
00018 : lock_ (0) 00019 { 00020 } |
|
Block the thread until the lock is acquired. Returns -1 on failure. Implements ACE_Lock. Definition at line 33 of file Lock.cpp. References ACE_Lock::acquire().
|
|
Block until the thread acquires a read lock. If the locking mechanism doesn't support read locks then this just calls . Returns -1 on failure. Implements ACE_Lock. Definition at line 51 of file Lock.cpp. References ACE_Lock::acquire_read().
00052 { 00053 return this->lock_->acquire_read (); 00054 } |
|
Block until the thread acquires a write lock. If the locking mechanism doesn't support read locks then this just calls . Returns -1 on failure. Implements ACE_Lock. Definition at line 57 of file Lock.cpp. References ACE_Lock::acquire_write().
00058 { 00059 return this->lock_->acquire_write (); 00060 } |
|
Definition at line 81 of file Lock.cpp.
00082 { 00083 #if defined (ACE_HAS_DUMP) 00084 // return this->lock_->dump (); 00085 #endif /* ACE_HAS_DUMP */ 00086 } |
|
Release the lock. Returns -1 on failure.
Implements ACE_Lock. Definition at line 45 of file Lock.cpp. References ACE_Lock::release().
|
|
Explicitly destroy the lock. Note that only one thread should call this method since it doesn't protect against race conditions. Implements ACE_Lock. Definition at line 27 of file Lock.cpp. References ACE_Lock::remove().
|
|
Conditionally acquire the lock (i.e., won't block). Returns -1 on failure. If we "failed" because someone else already had the lock, is set to . Implements ACE_Lock. Definition at line 39 of file Lock.cpp. References ACE_Lock::tryacquire().
00040 { 00041 return this->lock_->tryacquire (); 00042 } |
|
Conditionally acquire a read lock. If the locking mechanism doesn't support read locks then this just calls . Returns -1 on failure. If we "failed" because someone else already had the lock, is set to . Implements ACE_Lock. Definition at line 63 of file Lock.cpp. References ACE_Lock::tryacquire_read().
00064 { 00065 return this->lock_->tryacquire_read (); 00066 } |
|
Conditionally acquire a write lock. If the locking mechanism doesn't support read locks then this just calls . Returns -1 on failure. If we "failed" because someone else already had the lock, is set to . Implements ACE_Lock. Definition at line 69 of file Lock.cpp. References ACE_Lock::tryacquire_write().
00070 { 00071 return this->lock_->tryacquire_write (); 00072 } |
|
Conditionally try to upgrade a lock held for read to a write lock. If the locking mechanism doesn't support read locks then this just calls . Returns 0 on success, -1 on failure. Implements ACE_Lock. Definition at line 75 of file Lock.cpp. References ACE_Lock::tryacquire_write_upgrade().
00076 { 00077 return this->lock_->tryacquire_write_upgrade (); 00078 } |
|
|