summaryrefslogtreecommitdiff
path: root/sharebuffer.h
diff options
context:
space:
mode:
authorFox Caminiti <fox@foxcam.net>2022-12-16 20:16:43 -0500
committerFox Caminiti <fox@foxcam.net>2022-12-16 20:16:43 -0500
commitbedd6906eabdd513042d6a178d4dc56a3a41d1d3 (patch)
tree2bcbd3e46ae61e583707a2ccc5b3f5cfeacb61a8 /sharebuffer.h
parentcdb9e1f7240cb0716b7d99df5e1fd7c3fc3407a8 (diff)
v3, file/build organization
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;
-};
-