50 strncpy(
key_path, path, MX_IPC_KEYLEN );
68 if( (
shmemid = shmget(
key, sz + 1 *
sizeof( uintptr_t ), IPC_CREAT | 0666 ) ) < 0 )
72 if( shmctl(
shmemid, IPC_RMID, 0 ) < 0 )
74 fprintf( stderr,
"Could not remove shared memory with key %i\n",
key );
79 if( (
shmemid = shmget(
key, sz + 1 *
sizeof( uintptr_t ), IPC_CREAT | 0666 ) ) < 0 )
81 fprintf( stderr,
"Could not create shared memory with key %i\n",
key );
89 *( (uintptr_t *)
addr ) = (uintptr_t)
addr;
96 struct shmid_ds shmstats;
101 if( (
shmemid = shmget(
key, 0, 0666 ) ) < 0 )
103 fprintf( stderr,
"Could not remove shared memory with key %i\n",
key );
108 if( ( new_addr = shmat(
shmemid, 0, 0 ) ) == (
char *)-1 )
110 fprintf( stderr,
"Could not attach to shared memory with key %i\n",
key );
116 if( shmctl(
shmemid, IPC_STAT, &shmstats ) < 0 )
118 fprintf( stderr,
"Could not get shared memory stats with key %i\n",
key );
122 size = shmstats.shm_segsz;
126 if( !donot_set_addr )
128 addr = (
void *)*( (uintptr_t *)new_addr );
131 if( shmdt( new_addr ) != 0 )
133 fprintf( stderr,
"Unable to detach from shared memory\n" );
140 if( ( new_addr = shmat(
shmemid,
addr, 0 ) ) == (
char *)-1 )
142 fprintf( stderr,
"Could not re-attach shared memory with key %i\n",
key );
166 if( shmdt(
addr ) != 0 )
168 fprintf( stderr,
"Unable to detach from shared memory\n" );
void initialize()
Initialize the class.
int shmemid
The shared memory id associated with the key.
int create(size_t sz)
Create and attach to the segment.
int detach()
Detach from the segment.
int key_id
The id to use for key creation.
size_t size
The size of the segment.
int attach(bool donot_set_addr=false)
Attach to a segment without creating it.
void * addr
The base address of the segment.
key_t key
The shared memory key.
int attached
Flag indicating whether or not the segment is attached.
char key_path[MX_IPC_KEYLEN]
The path to use for key creation.
key_t setKey(const char *path, const int id)
Set the key.
Declarations for the mxlib shared memory facility.