ACE
6.3.3
|
Shared memory wrapper based on MMAP. More...
#include <Shared_Memory_MM.h>
Public Member Functions | |
ACE_Shared_Memory_MM (void) | |
Default constructor. More... | |
ACE_Shared_Memory_MM (ACE_HANDLE handle, size_t length=static_cast< size_t >(-1), int prot=PROT_RDWR, int share=ACE_MAP_PRIVATE, char *addr=0, ACE_OFF_T pos=0) | |
Constructor. More... | |
ACE_Shared_Memory_MM (const ACE_TCHAR *file_name, size_t length=static_cast< size_t >(-1), int flags=O_RDWR|O_CREAT, int mode=ACE_DEFAULT_FILE_PERMS, int prot=PROT_RDWR, int share=ACE_MAP_SHARED, char *addr=0, ACE_OFF_T pos=0) | |
Constructor. More... | |
int | open (ACE_HANDLE handle, size_t length=static_cast< size_t >(-1), int prot=PROT_RDWR, int share=ACE_MAP_PRIVATE, char *addr=0, ACE_OFF_T pos=0) |
Open method. More... | |
int | open (const ACE_TCHAR *file_name, size_t length=static_cast< size_t >(-1), int flags=O_RDWR|O_CREAT, int mode=ACE_DEFAULT_FILE_PERMS, int prot=PROT_RDWR, int share=ACE_MAP_SHARED, char *addr=0, ACE_OFF_T pos=0) |
Open method. More... | |
const ACE_TCHAR * | filename (void) const |
Return the name of file that is mapped (if any). More... | |
virtual int | close (void) |
Close down the shared memory segment. More... | |
virtual int | remove (void) |
Remove the shared memory segment and the underlying file. More... | |
virtual void * | malloc (size_t size=0) |
Create a new chuck of memory containing size bytes. More... | |
virtual int | free (void *p) |
virtual size_t | get_segment_size (void) const |
Return the size of the shared memory segment. More... | |
virtual ACE_HANDLE | get_id (void) const |
Return the ID of the shared memory segment (i.e., an ACE_HANDLE). More... | |
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_Mem_Map | shared_memory_ |
This version is implemented with memory-mapped files. More... | |
Shared memory wrapper based on MMAP.
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.
ACE_Shared_Memory_MM::ACE_Shared_Memory_MM | ( | void | ) |
Default constructor.
ACE_Shared_Memory_MM::ACE_Shared_Memory_MM | ( | ACE_HANDLE | handle, |
size_t | length = static_cast<size_t> (-1) , |
||
int | prot = PROT_RDWR , |
||
int | share = ACE_MAP_PRIVATE , |
||
char * | addr = 0 , |
||
ACE_OFF_T | pos = 0 |
||
) |
Constructor.
ACE_Shared_Memory_MM::ACE_Shared_Memory_MM | ( | const ACE_TCHAR * | file_name, |
size_t | length = static_cast<size_t> (-1) , |
||
int | flags = O_RDWR | O_CREAT , |
||
int | mode = ACE_DEFAULT_FILE_PERMS , |
||
int | prot = PROT_RDWR , |
||
int | share = ACE_MAP_SHARED , |
||
char * | addr = 0 , |
||
ACE_OFF_T | pos = 0 |
||
) |
Constructor.
|
virtual |
Close down the shared memory segment.
Implements ACE_Shared_Memory.
void ACE_Shared_Memory_MM::dump | ( | void | ) | const |
Dump the state of an object.
|
inline |
Return the name of file that is mapped (if any).
|
virtual |
Free a chuck of memory allocated by <ACE_Shared_Memory_MM::malloc>.
Implements ACE_Shared_Memory.
|
virtual |
Return the ID of the shared memory segment (i.e., an ACE_HANDLE).
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 |
Open method.
|
inline |
Open method.
|
virtual |
Remove the shared memory segment and the underlying file.
Implements ACE_Shared_Memory.
ACE_Shared_Memory_MM::ACE_ALLOC_HOOK_DECLARE |
Declare the dynamic allocation hooks.
|
private |
This version is implemented with memory-mapped files.