#include <Process_Semaphore.h>
Collaboration diagram for ACE_Process_Semaphore:

Public Member Functions | |
| ACE_Process_Semaphore (u_int count=1, const ACE_TCHAR *name=0, void *=0, int max=0x7FFFFFFF) | |
| int | remove (void) |
| int | acquire (void) |
| int | tryacquire (void) |
| int | release (void) |
| Increment the semaphore, potentially unblocking a waiting thread. | |
| int | acquire_read (void) |
| int | acquire_write (void) |
| int | tryacquire_read (void) |
| int | tryacquire_write (void) |
| int | tryacquire_write_upgrade (void) |
| const ACE_sema_t & | lock (void) const |
| Return the underlying lock. | |
| void | dump (void) const |
| Dump the state of an object. | |
Public Attributes | |
| ACE_ALLOC_HOOK_DECLARE | |
| Declare the dynamic allocation hooks. | |
Protected Attributes | |
| ACE_Semaphore | lock_ |
Definition at line 41 of file Process_Semaphore.h.
|
||||||||||||||||||||
|
Initialize the semaphore, with an initial value of count and a maximum value of max. Definition at line 28 of file Process_Semaphore.cpp. References ACE_TCHAR, and ACE_TEXT_ALWAYS_CHAR.
00033 : lock_ (count, USYNC_PROCESS, name, arg, max) 00034 #else 00035 : lock_ (ACE_TEXT_ALWAYS_CHAR (name), 00036 ACE_SV_Semaphore_Complex::ACE_CREATE, 00037 count) 00038 #endif /* ACE_WIN32 || ACE_HAS_POSIX_SEM */ 00039 { 00040 arg = arg; 00041 max = max; 00042 // ACE_TRACE ("ACE_Process_Semaphore::ACE_Process_Semaphore"); 00043 } |
|
|
Block the thread until the semaphore count becomes greater than 0, then decrement it. Definition at line 63 of file Process_Semaphore.cpp. References ACE_Semaphore::acquire(), and SEM_UNDO. Referenced by acquire_read(), and acquire_write().
|
|
|
Acquire semaphore ownership. This calls and is only here to make the interface consistent with the other synchronization APIs. Definition at line 21 of file Process_Semaphore.inl. References acquire().
00022 {
00023 return this->acquire ();
00024 }
|
|
|
Acquire semaphore ownership. This calls and is only here to make the interface consistent with the other synchronization APIs. Definition at line 31 of file Process_Semaphore.inl. References acquire().
00032 {
00033 return this->acquire ();
00034 }
|
|
|
Dump the state of an object.
Definition at line 18 of file Process_Semaphore.cpp. References ACE_BEGIN_DUMP, ACE_DEBUG, ACE_END_DUMP, ACE_Semaphore::dump(), and LM_DEBUG.
|
|
|
Return the underlying lock.
|
|
|
Increment the semaphore, potentially unblocking a waiting thread.
Definition at line 91 of file Process_Semaphore.cpp. References ACE_Semaphore::release(), and SEM_UNDO.
|
|
|
Explicitly destroy the semaphore. Note that only one thread should call this method since it doesn't protect against race conditions. Definition at line 53 of file Process_Semaphore.cpp. References ACE_Semaphore::remove().
|
|
|
Conditionally decrement the semaphore if count is greater than 0 (i.e., won't block). Returns -1 on failure. If we "failed" because someone else already had the lock, Definition at line 77 of file Process_Semaphore.cpp. References SEM_UNDO, and ACE_Semaphore::tryacquire(). Referenced by tryacquire_read(), and tryacquire_write().
00078 {
00079 // ACE_TRACE ("ACE_Process_Semaphore::tryacquire");
00080 #if defined (ACE_WIN32) || defined (ACE_HAS_POSIX_SEM)
00081 return this->lock_.tryacquire ();
00082 #else
00083 return this->lock_.tryacquire (0, SEM_UNDO);
00084 #endif /* defined (ACE_WIN32) || defined (ACE_HAS_POSIX_SEM) */
00085 }
|
|
|
Conditionally acquire semaphore (i.e., won't block). This calls and is only here to make the interface consistent with the other synchronization APIs. Returns -1 on failure. If we "failed" because someone else already had the lock, is set to . Definition at line 41 of file Process_Semaphore.inl. References tryacquire().
00042 {
00043 return this->tryacquire ();
00044 }
|
|
|
Conditionally acquire semaphore (i.e., won't block). This calls and is only here to make the ACE_Process_Semaphore interface consistent with the other synchronization APIs. Returns -1 on failure. If we "failed" because someone else already had the lock, is set to . Definition at line 51 of file Process_Semaphore.inl. References tryacquire().
00052 {
00053 return this->tryacquire ();
00054 }
|
|
|
This is only here to make the ACE_Process_Semaphore interface consistent with the other synchronization APIs. Assumes the caller has already acquired the semaphore using one of the above calls, and returns 0 (success) always. Definition at line 61 of file Process_Semaphore.inl.
00062 {
00063 return 0;
00064 }
|
|
|
Declare the dynamic allocation hooks.
Definition at line 129 of file Process_Semaphore.h. |
|
|
Definition at line 133 of file Process_Semaphore.h. |
1.3.6