Forum: C
Apr 26th, 2008, 7:02 PM
|
|
Replies: 1
Views: 203
structure with an array in shared memory
Hi. I'm having difficulties with shared memory.
I have a structure which looks like this:
struct sharemem{
int *actual
int *end;
int *sharearr;
}
I use shmget (IPC_PRIVATE, sizeof(struct...
|