Limit the number of queues to 16

This commit is contained in:
Sanchayan Maity 2016-03-15 19:39:03 +05:30
parent 63062e7e15
commit df5a0e339c

View file

@ -10,8 +10,8 @@
#include <minix/type.h> #include <minix/type.h>
#define MAX_RECEIVERS 4 #define MAX_RECEIVERS 4
#define MAX_MESSAGES 64 #define MAX_MESSAGES 16
#define MAX_QUEUES 64 #define MAX_QUEUES 16
#define MAX_PAYLOAD 32 #define MAX_PAYLOAD 32
#define NAME_SIZE 32 #define NAME_SIZE 32
#define DEFAULT_PRIO 0 #define DEFAULT_PRIO 0