ACE 8.0.1
|
This is a wrapper for System V shared memory. More...
#include <SV_Shared_Memory.h>
Public Types | |
enum | { ACE_CREATE = IPC_CREAT , ACE_OPEN = 0 } |
Public Member Functions | |
ACE_SV_Shared_Memory () | |
ACE_SV_Shared_Memory (key_t external_id, size_t size, int create, int perms=ACE_DEFAULT_FILE_PERMS, void *virtual_addr=0, int flags=0) | |
ACE_SV_Shared_Memory (ACE_HANDLE internal_id, int flags=0) | |
int | open (key_t external_id, size_t size, int create=ACE_SV_Shared_Memory::ACE_OPEN, int perms=ACE_DEFAULT_FILE_PERMS) |
int | open_and_attach (key_t external_id, size_t size, int create=ACE_SV_Shared_Memory::ACE_OPEN, int perms=ACE_DEFAULT_FILE_PERMS, void *virtual_addr=0, int flags=0) |
int | attach (void *virtual_addr=0, int flags=0) |
Attach this shared memory segment. | |
int | detach () |
Detach this shared memory segment. | |
int | remove () |
Remove this shared memory segment. | |
int | control (int cmd, void *buf) |
Forward to underlying System V <shmctl>. | |
void * | get_segment_ptr () const |
size_t | get_segment_size () const |
ACE_HANDLE | get_id () const |
Return the ID of the shared memory segment (i.e., an ACE_HANDLE). | |
void | dump () const |
Dump the state of an object. | |
Public Attributes | |
ACE_ALLOC_HOOK_DECLARE | |
Declare the dynamic allocation hooks. | |
Protected Types | |
enum | { ALIGN_WORDB = 8 } |
Protected Member Functions | |
size_t | round_up (size_t len) |
Round up to an appropriate page size. | |
Protected Attributes | |
ACE_HANDLE | internal_id_ |
Internal identifier. | |
size_t | size_ |
Size of the mapped segment. | |
void * | segment_ptr_ |
Pointer to the beginning of the segment. | |
This is a wrapper for System V shared memory.
ACE_SV_Shared_Memory::ACE_SV_Shared_Memory | ( | ) |
ACE_SV_Shared_Memory::ACE_SV_Shared_Memory | ( | key_t | external_id, |
size_t | size, | ||
int | create, | ||
int | perms = ACE_DEFAULT_FILE_PERMS, | ||
void * | virtual_addr = 0, | ||
int | flags = 0 ) |
ACE_SV_Shared_Memory::ACE_SV_Shared_Memory | ( | ACE_HANDLE | internal_id, |
int | flags = 0 ) |
Attach this shared memory segment.
Forward to underlying System V <shmctl>.
|
inline |
Detach this shared memory segment.
void ACE_SV_Shared_Memory::dump | ( | ) | const |
Dump the state of an object.
|
inline |
Return the ID of the shared memory segment (i.e., an ACE_HANDLE).
|
inline |
|
inline |
|
inline |
int ACE_SV_Shared_Memory::open_and_attach | ( | key_t | external_id, |
size_t | size, | ||
int | create = ACE_SV_Shared_Memory::ACE_OPEN, | ||
int | perms = ACE_DEFAULT_FILE_PERMS, | ||
void * | virtual_addr = 0, | ||
int | flags = 0 ) |
|
inline |
Remove this shared memory segment.
Round up to an appropriate page size.
ACE_SV_Shared_Memory::ACE_ALLOC_HOOK_DECLARE |
Declare the dynamic allocation hooks.
|
protected |
Internal identifier.
|
protected |
Pointer to the beginning of the segment.
|
protected |
Size of the mapped segment.