From df5a0e339cb989285d4f8858bc3d667c4cf1adc6 Mon Sep 17 00:00:00 2001 From: Sanchayan Maity Date: Tue, 15 Mar 2016 19:39:03 +0530 Subject: [PATCH] Limit the number of queues to 16 --- minix/kernel/mqueue.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/minix/kernel/mqueue.h b/minix/kernel/mqueue.h index 46a67cd16..e85607191 100644 --- a/minix/kernel/mqueue.h +++ b/minix/kernel/mqueue.h @@ -10,8 +10,8 @@ #include #define MAX_RECEIVERS 4 -#define MAX_MESSAGES 64 -#define MAX_QUEUES 64 +#define MAX_MESSAGES 16 +#define MAX_QUEUES 16 #define MAX_PAYLOAD 32 #define NAME_SIZE 32 #define DEFAULT_PRIO 0