Safari Books Online is a digital library providing on-demand subscription access to thousands of learning resources.
The shmget() system call creates a new shared memory segment or obtains the identifier of an existing segment. The contents of a newly created shared memory segment are initialized to 0.
#include <sys/types.h> /* For portability */ #include <sys/shm.h> int shmget(key_t key, size_t size, int shmflg);