since OpenBSD pthread does not support pthread_condattr_setpshared().
This patch could also stay in the OpenBSD ports tree or depend on a
configure test macro rather than defined __OpenBSD__.
#include "shmlog.h"
#include <i3/ipc.h>
-static uint32_t offset_next_write,
- wrap_count;
+#if !defined(__OpenBSD__)
+static uint32_t offset_next_write;
+#endif
+static uint32_t wrap_count;
static i3_shmlog_header *header;
static char *logbuffer,
int main(int argc, char *argv[]) {
int o, option_index = 0;
- bool verbose = false,
- follow = false;
+ bool verbose = false;
+#if !defined(__OpenBSD__)
+ bool follow = false;
+#endif
static struct option long_options[] = {
{"version", no_argument, 0, 'v'},
{"verbose", no_argument, 0, 'V'},
+#if !defined(__OpenBSD__)
{"follow", no_argument, 0, 'f'},
+#endif
{"help", no_argument, 0, 'h'},
- {0, 0, 0, 0}};
+ {0, 0, 0, 0}
+ };
+#if !defined(__OpenBSD__)
char *options_string = "s:vfVh";
+#else
+ char *options_string = "vVh";
+#endif
while ((o = getopt_long(argc, argv, options_string, long_options, &option_index)) != -1) {
if (o == 'v') {
return 0;
} else if (o == 'V') {
verbose = true;
+#if !defined(__OpenBSD__)
} else if (o == 'f') {
follow = true;
+#endif
} else if (o == 'h') {
printf("i3-dump-log " I3_VERSION "\n");
- printf("i3-dump-log [-f] [-s <socket>]\n");
+#if !defined(__OpenBSD__)
+ printf("i3-dump-log [-fhVv]\n");
+#else
+ printf("i3-dump-log [-hVv]\n");
+#endif
return 0;
}
}
walk = logbuffer + sizeof(i3_shmlog_header);
print_till_end();
+#if !defined(__OpenBSD__)
if (follow) {
/* Since pthread_cond_wait() expects a mutex, we need to provide one.
* To not lock i3 (that’s bad, mhkay?) we just define one outside of
}
}
}
+#endif
return 0;
}
#pragma once
#include <stdint.h>
+#if !defined(__OpenBSD__)
#include <pthread.h>
+#endif
/* Default shmlog size if not set by user. */
extern const int default_shmlog_size;
* and don’t matter — clients use an equality check (==). */
uint32_t wrap_count;
+#if !defined(__OpenBSD__)
/* pthread condvar which will be broadcasted whenever there is a new
* message in the log. i3-dump-log uses this to implement -f (follow, like
* tail -f) in an efficient way. */
pthread_cond_t condvar;
+#endif
} i3_shmlog_header;
i3_HEADERS_CMDPARSER := $(wildcard include/GENERATED_*.h)
i3_HEADERS := $(filter-out $(i3_HEADERS_CMDPARSER),$(wildcard include/*.h))
i3_CFLAGS = $(XKB_COMMON_CFLAGS) $(XKB_COMMON_X11_CFLAGS) $(XCB_CFLAGS) $(XCB_KBD_CFLAGS) $(XCB_WM_CFLAGS) $(XCB_CURSOR_CFLAGS) $(XCB_XRM_CFLAGS) $(PANGO_CFLAGS) $(YAJL_CFLAGS) $(LIBEV_CFLAGS) $(PCRE_CFLAGS) $(LIBSN_CFLAGS)
-i3_LIBS = $(XKB_COMMON_LIBS) $(XKB_COMMON_X11_LIBS) $(XCB_LIBS) $(XCB_XKB_LIBS) $(XCB_KBD_LIBS) $(XCB_WM_LIBS) $(XCB_CURSOR_LIBS) $(XCB_XRM_LIBS) $(PANGO_LIBS) $(YAJL_LIBS) $(LIBEV_LIBS) $(PCRE_LIBS) $(LIBSN_LIBS) -lm -lpthread
+i3_LIBS = $(XKB_COMMON_LIBS) $(XKB_COMMON_X11_LIBS) $(XCB_LIBS) $(XCB_XKB_LIBS) $(XCB_KBD_LIBS) $(XCB_WM_LIBS) $(XCB_CURSOR_LIBS) $(XCB_XRM_LIBS) $(PANGO_LIBS) $(YAJL_LIBS) $(LIBEV_LIBS) $(PCRE_LIBS) $(LIBSN_LIBS) -lm
+ifneq ($(UNAME),OpenBSD)
+i3_LIBS += -lpthread
+endif
# When using clang, we use pre-compiled headers to speed up the build. With
# gcc, this actually makes the build slower.
#include <sys/mman.h>
#include <sys/stat.h>
#include <errno.h>
+#if !defined(__OpenBSD__)
#include <pthread.h>
+#endif
#include "util.h"
#include "log.h"
header = (i3_shmlog_header *)logbuffer;
+#if !defined(__OpenBSD__)
pthread_condattr_t cond_attr;
pthread_condattr_init(&cond_attr);
if (pthread_condattr_setpshared(&cond_attr, PTHREAD_PROCESS_SHARED) != 0)
fprintf(stderr, "pthread_condattr_setpshared() failed, i3-dump-log -f will not work!\n");
pthread_cond_init(&(header->condvar), &cond_attr);
+#endif
logwalk = logbuffer + sizeof(i3_shmlog_header);
loglastwrap = logbuffer + logbuffer_size;
store_log_markers();
+#if !defined(__OpenBSD__)
/* Wake up all (i3-dump-log) processes waiting for condvar. */
pthread_cond_broadcast(&(header->condvar));
+#endif
if (print)
fwrite(message, len, 1, stdout);