shm_fd             36 ext/opcache/shared_alloc_posix.c     int shm_fd;
shm_fd             54 ext/opcache/shared_alloc_posix.c 	shared_segment->shm_fd = shm_open(shared_segment_name, O_RDWR|O_CREAT|O_TRUNC, 0600);
shm_fd             55 ext/opcache/shared_alloc_posix.c 	if (shared_segment->shm_fd == -1) {
shm_fd             60 ext/opcache/shared_alloc_posix.c 	if (ftruncate(shared_segment->shm_fd, requested_size) != 0) {
shm_fd             66 ext/opcache/shared_alloc_posix.c 	shared_segment->common.p = mmap(0, requested_size, PROT_READ | PROT_WRITE, MAP_SHARED, shared_segment->shm_fd, 0);
shm_fd             83 ext/opcache/shared_alloc_posix.c 	close(shared_segment->shm_fd);