ACE
6.4.2
|
This is a simple semaphore package that assumes there are no race conditions for initialization (i.e., the order of process startup must be well defined). More...
#include <SV_Semaphore_Simple.h>
Public Types | |
enum | { ACE_CREATE = IPC_CREAT, ACE_EXCL = IPC_EXCL, ACE_OPEN = 0 } |
Public Member Functions | |
ACE_SV_Semaphore_Simple (void) | |
ACE_SV_Semaphore_Simple (key_t key, short flags=ACE_SV_Semaphore_Simple::ACE_CREATE, int initial_value=1, u_short nsems=1, mode_t perms=ACE_DEFAULT_FILE_PERMS) | |
ACE_SV_Semaphore_Simple (const char *name, short flags=ACE_SV_Semaphore_Simple::ACE_CREATE, int initial_value=1, u_short nsems=1, mode_t perms=ACE_DEFAULT_FILE_PERMS) | |
ACE_SV_Semaphore_Simple (const wchar_t *name, short flags=ACE_SV_Semaphore_Simple::ACE_CREATE, int initial_value=1, u_short nsems=1, mode_t perms=ACE_DEFAULT_FILE_PERMS) | |
~ACE_SV_Semaphore_Simple (void) | |
int | open (const char *name, short flags=ACE_SV_Semaphore_Simple::ACE_CREATE, int initial_value=1, u_short nsems=1, mode_t perms=ACE_DEFAULT_FILE_PERMS) |
int | open (const wchar_t *name, short flags=ACE_SV_Semaphore_Simple::ACE_CREATE, int initial_value=1, u_short nsems=1, mode_t perms=ACE_DEFAULT_FILE_PERMS) |
int | open (key_t key, short flags=ACE_SV_Semaphore_Simple::ACE_CREATE, int initial_value=1, u_short nsems=1, mode_t perms=ACE_DEFAULT_FILE_PERMS) |
int | close (void) |
int | remove (void) const |
int | acquire (u_short n=0, short flags=0) const |
int | acquire_read (u_short n=0, short flags=0) const |
Acquire a semaphore for reading. More... | |
int | acquire_write (u_short n=0, short flags=0) const |
Acquire a semaphore for writing. More... | |
int | tryacquire (u_short n=0, short flags=0) const |
Non-blocking version of <acquire>. More... | |
int | tryacquire_read (u_short n=0, short flags=0) const |
Try to acquire the semaphore for reading. More... | |
int | tryacquire_write (u_short n=0, short flags=0) const |
Try to acquire the semaphore for writing. More... | |
int | release (u_short n=0, short flags=0) const |
int | op (short val, u_short semnum=0, short flags=SEM_UNDO) const |
int | op (sembuf op_vec[], u_short nsems) const |
General ACE_SV_Semaphore operation on an array of SV_Semaphores. More... | |
int | control (int cmd, semun arg, u_short n=0) const |
int | control (int cmd, int value=0, u_short n=0) const |
int | get_id (void) const |
Get underlying internal id. More... | |
void | dump (void) const |
Dump the state of an object. More... | |
Public Attributes | |
ACE_ALLOC_HOOK_DECLARE | |
Declare the dynamic allocation hooks. More... | |
Protected Member Functions | |
key_t | name_2_key (const char *name) |
Protected Attributes | |
key_t | key_ |
Semaphore key. More... | |
int | internal_id_ |
Internal ID to identify the semaphore group within this process. More... | |
int | sem_number_ |
Number of semaphores we're creating. More... | |
This is a simple semaphore package that assumes there are no race conditions for initialization (i.e., the order of process startup must be well defined).
ACE_SV_Semaphore_Simple::ACE_SV_Semaphore_Simple | ( | void | ) |
ACE_SV_Semaphore_Simple::ACE_SV_Semaphore_Simple | ( | key_t | key, |
short | flags = ACE_SV_Semaphore_Simple::ACE_CREATE , |
||
int | initial_value = 1 , |
||
u_short | nsems = 1 , |
||
mode_t | perms = ACE_DEFAULT_FILE_PERMS |
||
) |
ACE_SV_Semaphore_Simple::ACE_SV_Semaphore_Simple | ( | const char * | name, |
short | flags = ACE_SV_Semaphore_Simple::ACE_CREATE , |
||
int | initial_value = 1 , |
||
u_short | nsems = 1 , |
||
mode_t | perms = ACE_DEFAULT_FILE_PERMS |
||
) |
ACE_SV_Semaphore_Simple::ACE_SV_Semaphore_Simple | ( | const wchar_t * | name, |
short | flags = ACE_SV_Semaphore_Simple::ACE_CREATE , |
||
int | initial_value = 1 , |
||
u_short | nsems = 1 , |
||
mode_t | perms = ACE_DEFAULT_FILE_PERMS |
||
) |
ACE_SV_Semaphore_Simple::~ACE_SV_Semaphore_Simple | ( | void | ) |
|
inline |
Wait until a ACE_SV_Semaphore's value is greater than 0, the decrement it by 1 and return. Dijkstra's P operation, Tannenbaums DOWN operation.
|
inline |
Acquire a semaphore for reading.
|
inline |
Acquire a semaphore for writing.
|
inline |
Close a ACE_SV_Semaphore, marking it as invalid for subsequent operations...
|
inline |
int ACE_SV_Semaphore_Simple::control | ( | int | cmd, |
int | value = 0 , |
||
u_short | n = 0 |
||
) | const |
void ACE_SV_Semaphore_Simple::dump | ( | void | ) | const |
Dump the state of an object.
|
inline |
Get underlying internal id.
|
protected |
int ACE_SV_Semaphore_Simple::op | ( | short | val, |
u_short | semnum = 0 , |
||
short | flags = SEM_UNDO |
||
) | const |
General ACE_SV_Semaphore operation. Increment or decrement by a specific amount (positive or negative; amount can`t be zero).
|
inline |
General ACE_SV_Semaphore operation on an array of SV_Semaphores.
int ACE_SV_Semaphore_Simple::open | ( | const char * | name, |
short | flags = ACE_SV_Semaphore_Simple::ACE_CREATE , |
||
int | initial_value = 1 , |
||
u_short | nsems = 1 , |
||
mode_t | perms = ACE_DEFAULT_FILE_PERMS |
||
) |
|
inline |
int ACE_SV_Semaphore_Simple::open | ( | key_t | key, |
short | flags = ACE_SV_Semaphore_Simple::ACE_CREATE , |
||
int | initial_value = 1 , |
||
u_short | nsems = 1 , |
||
mode_t | perms = ACE_DEFAULT_FILE_PERMS |
||
) |
Open or create one or more SV_Semaphores. We return 0 if all is OK, else -1.
|
inline |
Increment ACE_SV_Semaphore by one. Dijkstra's V operation, Tannenbaums UP operation.
int ACE_SV_Semaphore_Simple::remove | ( | void | ) | const |
Remove all SV_Semaphores associated with a particular key. This call is intended to be called from a server, for example, when it is being shut down, as we do an IPC_RMID on the ACE_SV_Semaphore, regardless of whether other processes may be using it or not. Most other processes should use close() below.
|
inline |
Non-blocking version of <acquire>.
|
inline |
Try to acquire the semaphore for reading.
|
inline |
Try to acquire the semaphore for writing.
ACE_SV_Semaphore_Simple::ACE_ALLOC_HOOK_DECLARE |
Declare the dynamic allocation hooks.
|
protected |
Internal ID to identify the semaphore group within this process.
|
protected |
Semaphore key.
|
protected |
Number of semaphores we're creating.