From: David van Moolenbroek Date: Wed, 12 May 2010 13:21:15 +0000 (+0000) Subject: DS: base number of data entries on NR_SYS_PROCS X-Git-Tag: v3.1.7~61 X-Git-Url: http://zhaoyanbai.com/repos/man.named-journalprint.html?a=commitdiff_plain;h=ce386974bc963aa798c7abc8ad9d6436cbd004f5;p=minix.git DS: base number of data entries on NR_SYS_PROCS --- diff --git a/servers/ds/store.h b/servers/ds/store.h index 1ef271729..ccf7edc82 100644 --- a/servers/ds/store.h +++ b/servers/ds/store.h @@ -3,13 +3,13 @@ /* Type definitions for the Data Store Server. */ #include -#include +#include #include #include #include -#define NR_DS_KEYS 64 /* number of entries */ -#define NR_DS_SUBS (4*_NR_SYS_PROCS) /* number of subscriptions */ +#define NR_DS_KEYS (2*NR_SYS_PROCS) /* number of entries */ +#define NR_DS_SUBS (4*NR_SYS_PROCS) /* number of subscriptions */ #define NR_DS_SNAPSHOT 5 /* number of snapshots */ /* Base 'class' for the following 3 structs. */