shmget() 공유 메모리 생성int shmget(key_t key, int size, int shmflg);http://forum.falinux.com/zbxe/index.php?document_srl=423456&mid=C_LIB shmat() 공유 메모리를 프로세서에 붙이기(연결)void *shmat(int shmid, const void *shmaddr, int shmflg);http://forum.falinux.com/zbxe/index.php?document_srl=426100&mid=C_LIB shmdt() 공유 메모리를 프로세서에서 분리(연결 끊기)int shmdt(const void *shmaddr);http://forum.falinux.com/zbxe/index.php?document..