Skip to content

Commit

Permalink
msgq: bump num readers up a bit (#379)
Browse files Browse the repository at this point in the history
  • Loading branch information
adeebshihadeh authored Oct 25, 2022
1 parent 79e6e4c commit 1d25fc3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion messaging/msgq.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#include <atomic>

#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)
Expand Down

0 comments on commit 1d25fc3

Please sign in to comment.