]> git.sur5r.net Git - i3/i3/commitdiff
forgot include/shmlog.h
authorMichael Stapelberg <michael@stapelberg.de>
Sat, 7 Jan 2012 14:59:58 +0000 (14:59 +0000)
committerMichael Stapelberg <michael@stapelberg.de>
Sat, 7 Jan 2012 14:59:58 +0000 (14:59 +0000)
include/shmlog.h [new file with mode: 0644]

diff --git a/include/shmlog.h b/include/shmlog.h
new file mode 100644 (file)
index 0000000..c513bab
--- /dev/null
@@ -0,0 +1,22 @@
+/*
+ * vim:ts=4:sw=4:expandtab
+ *
+ * i3 - an improved dynamic tiling window manager
+ * © 2009-2012 Michael Stapelberg and contributors (see also: LICENSE)
+ *
+ * The format of the shmlog data structure which i3 development versions use by
+ * default (ringbuffer for storing the debug log).
+ *
+ */
+#ifndef _I3_SHMLOG_H
+#define _I3_SHMLOG_H
+
+#include <stdint.h>
+
+typedef struct i3_shmlog_header {
+    uint32_t offset_next_write;
+    uint32_t offset_last_wrap;
+    uint32_t size;
+} i3_shmlog_header;
+
+#endif