summaryrefslogtreecommitdiff
path: root/src/lib/shm_ap_rbuff.c
diff options
context:
space:
mode:
authordimitri staessens <dimitri.staessens@intec.ugent.be>2016-09-08 10:26:04 +0200
committerdimitri staessens <dimitri.staessens@intec.ugent.be>2016-09-08 10:26:04 +0200
commit2e561a634ae3e747b293a4e05eaf44726968dc1a (patch)
tree7bb1e6ab8131d1d679f5a5bb5e5953e4a60d3986 /src/lib/shm_ap_rbuff.c
parentb9793ab68aa321b0dac14d1dff5789edb95ad0bb (diff)
downloadouroboros-2e561a634ae3e747b293a4e05eaf44726968dc1a.tar.gz
ouroboros-2e561a634ae3e747b293a4e05eaf44726968dc1a.zip
lib: Fix shm for evil devices
Cupertino's finest don't seem to support a write call with a filedescriptor that points to a shared memory file. ENOTSUP is not mentioned in their manpage either. Classic.
Diffstat (limited to 'src/lib/shm_ap_rbuff.c')
-rw-r--r--src/lib/shm_ap_rbuff.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/shm_ap_rbuff.c b/src/lib/shm_ap_rbuff.c
index 473894d5..d9e332fe 100644
--- a/src/lib/shm_ap_rbuff.c
+++ b/src/lib/shm_ap_rbuff.c
@@ -104,13 +104,13 @@ static struct shm_ap_rbuff * shm_ap_rbuff_create(bool dir)
free(rb);
return NULL;
}
-
+#ifndef __APPLE__
if (write(shm_fd, "", 1) != 1) {
LOG_DBG("Failed to finalise extension of ringbuffer.");
free(rb);
return NULL;
}
-
+#endif
shm_base = mmap(NULL,
SHM_RBUFF_FILE_SIZE,
PROT_READ | PROT_WRITE,