shm_open
int shm_open(const char* name, int openMode, mode_t permissions);
int fd = shm_open(name, O_RDWR | O_CREAT | O_EXCL | O_NOFOLLOW, 0600);
int fd = shm_open("test_shm", O_CREAT | O_RDWR, 0666);