We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f696106 commit 5d037c6Copy full SHA for 5d037c6
shmem/unix/shm.c
@@ -706,7 +706,9 @@ APR_PERMS_SET_IMPLEMENT(shm)
706
return errno;
707
}
708
return APR_SUCCESS;
709
-#elif APR_USE_SHMEM_MMAP_SHM
+#elif APR_USE_SHMEM_MMAP_SHM && !defined(DARWIN)
710
+ /* ### This hangs or fails on MacOS, so skipping this for the
711
+ * ENOTIMPL case there - unclear why or if that's fixable. */
712
apr_shm_t *shm = (apr_shm_t *)theshm;
713
const char *shm_name;
714
int fd;
0 commit comments