ACE
6.4.2
|
Shared memory wrapper based on System V shared memory. More...
#include <Shared_Memory_SV.h>
Public Types | |
enum | { ACE_CREATE = IPC_CREAT, ACE_OPEN = 0 } |
Public Member Functions | |
ACE_Shared_Memory_SV (void) | |
ACE_Shared_Memory_SV (key_t id, size_t length, int create=ACE_Shared_Memory_SV::ACE_OPEN, int perms=ACE_DEFAULT_FILE_PERMS, void *addr=0, int flags=0) | |
int | open (key_t id, size_t length, int create=ACE_Shared_Memory_SV::ACE_OPEN, int perms=ACE_DEFAULT_FILE_PERMS, void *addr=0, int flags=0) |
virtual int | close (void) |
Close down the shared memory segment. More... | |
virtual int | remove (void) |
Remove the underlying shared memory segment. More... | |
virtual void * | malloc (size_t=0) |
Create a new chuck of memory containing size bytes. More... | |
virtual int | free (void *p) |
Free a chuck of memory allocated by <ACE_Shared_Memory_SV::malloc>. More... | |
virtual size_t | get_segment_size (void) const |
Return the size of the shared memory segment. More... | |
virtual ACE_HANDLE | get_id (void) const |
void | dump (void) const |
Dump the state of an object. More... | |
Public Member Functions inherited from ACE_Shared_Memory | |
virtual | ~ACE_Shared_Memory (void) |
Public Attributes | |
ACE_ALLOC_HOOK_DECLARE | |
Declare the dynamic allocation hooks. More... | |
Private Attributes | |
ACE_SV_Shared_Memory | shared_memory_ |
Shared memory wrapper based on System V shared memory.
This class provides a very simple-minded shared memory manager. We strongly recommend that you do NOT use this class. Instead, please use ACE_Malloc
, which has much more powerful capabilities.
|
inline |
ACE_Shared_Memory_SV::ACE_Shared_Memory_SV | ( | key_t | id, |
size_t | length, | ||
int | create = ACE_Shared_Memory_SV::ACE_OPEN , |
||
int | perms = ACE_DEFAULT_FILE_PERMS , |
||
void * | addr = 0 , |
||
int | flags = 0 |
||
) |
|
virtual |
Close down the shared memory segment.
Implements ACE_Shared_Memory.
void ACE_Shared_Memory_SV::dump | ( | void | ) | const |
Dump the state of an object.
|
virtual |
Free a chuck of memory allocated by <ACE_Shared_Memory_SV::malloc>.
Implements ACE_Shared_Memory.
|
virtual |
Return the ID of the shared memory segment (i.e., a System V shared memory internal id).
Implements ACE_Shared_Memory.
|
virtual |
Return the size of the shared memory segment.
Implements ACE_Shared_Memory.
|
virtual |
Create a new chuck of memory containing size bytes.
Implements ACE_Shared_Memory.
|
inline |
|
virtual |
Remove the underlying shared memory segment.
Implements ACE_Shared_Memory.
ACE_Shared_Memory_SV::ACE_ALLOC_HOOK_DECLARE |
Declare the dynamic allocation hooks.
|
private |
This version is implemented with System V shared memory segments.