From: Baptiste Daroussin Date: Wed, 20 Mar 2013 16:01:12 +0000 (+0100) Subject: FreeBSD expect a real path on the filesystem for shm_open X-Git-Tag: 4.6~70 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=505d87ef3e44fb3cb6f7776ef986a29d4236a1e2;p=i3%2Fi3 FreeBSD expect a real path on the filesystem for shm_open --- diff --git a/src/log.c b/src/log.c index e490cf31..0269fb21 100644 --- a/src/log.c +++ b/src/log.c @@ -107,7 +107,11 @@ void init_logging(void) { sysconf(_SC_PAGESIZE); #endif logbuffer_size = min(physical_mem_bytes * 0.01, shmlog_size); +#if defined(__FreeBSD__) + sasprintf(&shmlogname, "/tmp/i3-log-%d", getpid()); +#else sasprintf(&shmlogname, "/i3-log-%d", getpid()); +#endif logbuffer_shm = shm_open(shmlogname, O_RDWR | O_CREAT, S_IREAD | S_IWRITE); if (logbuffer_shm == -1) { fprintf(stderr, "Could not shm_open SHM segment for the i3 log: %s\n", strerror(errno));