From 19fb02ce15caaf32ab3e452fde2b236f1a6c355c Mon Sep 17 00:00:00 2001 From: mitchellgoffpc Date: Fri, 26 Aug 2022 19:38:01 -0700 Subject: [PATCH] Bump NUM_READERS --- messaging/msgq.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/messaging/msgq.h b/messaging/msgq.h index 90a20ac..fde4cfe 100644 --- a/messaging/msgq.h +++ b/messaging/msgq.h @@ -5,7 +5,7 @@ #include #define DEFAULT_SEGMENT_SIZE (10 * 1024 * 1024) -#define NUM_READERS 10 +#define NUM_READERS 15 #define ALIGN(n) ((n + (8 - 1)) & -8) #define UNPACK64(higher, lower, input) do {uint64_t tmp = input; higher = tmp >> 32; lower = tmp & 0xFFFFFFFF;} while (0)