I am attempting to allocate some amount of shared memory based on a variable shmsz which is always some multiple of 8. In most cases, it's either 8 or 16.
Using the following code:
// allocate shared memory
if ((shmid = shmget(IPC_PRIVATE, shmsz, IPC_CREAT | 0666)) < 0) {
printf("Could not allocate shared memory.\n");
exit(1);
}
This used to work like a charm. But now, I am always getting the error message and having my program exit on me.
EDIT: errno() shows "Bus Error: 10"
errnowhen the call fails, that might give a hint... – Seg Fault Sep 27 '12 at 17:15errnosay? – Nikolai N Fetissov Sep 27 '12 at 17:16#include <errno.h>– Nikolai N Fetissov Sep 27 '12 at 17:52errnois not a function - you cannot call it with(), it's an integer value for all purposes. – Nikolai N Fetissov Sep 27 '12 at 18:23