summaryrefslogtreecommitdiff
path: root/sharebuffer.h
diff options
context:
space:
mode:
Diffstat (limited to 'sharebuffer.h')
-rw-r--r--sharebuffer.h17
1 files changed, 0 insertions, 17 deletions
diff --git a/sharebuffer.h b/sharebuffer.h
deleted file mode 100644
index c25deb2..0000000
--- a/sharebuffer.h
+++ /dev/null
@@ -1,17 +0,0 @@
-#include <sys/mman.h>
-#include <fcntl.h>
-#include <semaphore.h>
-#include <sys/stat.h>
-#include <stdio.h>
-#include <stdlib.h>
-#include <unistd.h>
-
-#define SHAREDMEMORY_SIZE ((uint64_t)20*1024*1024)
-
-struct SharedMemoryInfo {
- sem_t sem1;
- sem_t sem2;
- int16_t shared_framenumber;
- char BitmapData;
-};
-