msgq: bump num readers up a bit (#379)

This commit is contained in:
Adeeb Shihadeh 2022-10-24 17:53:32 -07:00 committed by GitHub
parent 79e6e4c26d
commit 1d25fc3f20
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@
#include <atomic> #include <atomic>
#define DEFAULT_SEGMENT_SIZE (10 * 1024 * 1024) #define DEFAULT_SEGMENT_SIZE (10 * 1024 * 1024)
#define NUM_READERS 10 #define NUM_READERS 12
#define ALIGN(n) ((n + (8 - 1)) & -8) #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) #define UNPACK64(higher, lower, input) do {uint64_t tmp = input; higher = tmp >> 32; lower = tmp & 0xFFFFFFFF;} while (0)