From 1d25fc3f202d5ddeee97848480323e9b14f9bdfa Mon Sep 17 00:00:00 2001 From: Adeeb Shihadeh Date: Mon, 24 Oct 2022 17:53:32 -0700 Subject: [PATCH] msgq: bump num readers up a bit (#379) --- messaging/msgq.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/messaging/msgq.h b/messaging/msgq.h index 90a20ac..8af069d 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 12 #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)