diff options
author | Sander Vrijders <sander.vrijders@intec.ugent.be> | 2016-09-08 10:34:16 +0200 |
---|---|---|
committer | Sander Vrijders <sander.vrijders@intec.ugent.be> | 2016-09-08 10:34:16 +0200 |
commit | ecdf47b97abb8c5107846f4ef4a17bd62ba6dc82 (patch) | |
tree | 7bb1e6ab8131d1d679f5a5bb5e5953e4a60d3986 /src/lib/lockfile.c | |
parent | b9793ab68aa321b0dac14d1dff5789edb95ad0bb (diff) | |
parent | 2e561a634ae3e747b293a4e05eaf44726968dc1a (diff) | |
download | ouroboros-ecdf47b97abb8c5107846f4ef4a17bd62ba6dc82.tar.gz ouroboros-ecdf47b97abb8c5107846f4ef4a17bd62ba6dc82.zip |
Merged in dstaesse/ouroboros/be-apple (pull request #250)
lib: Fix shm for evil devices
Diffstat (limited to 'src/lib/lockfile.c')
-rw-r--r-- | src/lib/lockfile.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/lockfile.c b/src/lib/lockfile.c index 81bed687..04ce9324 100644 --- a/src/lib/lockfile.c +++ b/src/lib/lockfile.c @@ -64,13 +64,13 @@ struct lockfile * lockfile_create() { free(lf); return NULL; } - +#ifndef __APPLE__ if (write(lf->fd, "", 1) != 1) { LOG_DBGF("Failed to finalise lockfile."); free(lf); return NULL; } - +#endif lf->api = mmap(NULL, LF_SIZE, PROT_READ | PROT_WRITE, MAP_SHARED, |