From: Philip Homburg Date: Fri, 22 Feb 2008 14:51:38 +0000 (+0000) Subject: Higher NCALLS requires bigger table. New calls are in PM. X-Git-Tag: v3.1.4~265 X-Git-Url: http://zhaoyanbai.com/repos/man.dnssec-settime.html?a=commitdiff_plain;h=66c930ef8bf088b28c176e27cc193b30ee7630d0;p=minix.git Higher NCALLS requires bigger table. New calls are in PM. --- diff --git a/servers/vfs/table.c b/servers/vfs/table.c index 859eee3d8..1b107b57c 100644 --- a/servers/vfs/table.c +++ b/servers/vfs/table.c @@ -118,6 +118,17 @@ PUBLIC _PROTOTYPE (int (*call_vec[]), (void) ) = { no_sys, /* 97 = getsysinfo_up */ no_sys, /* 98 = (sprofile) */ no_sys, /* 99 = (cprofile) */ + no_sys, /* 100 = unused */ + no_sys, /* 101 = unused */ + no_sys, /* 102 = unused */ + no_sys, /* 103 = unused */ + no_sys, /* 104 = unused */ + no_sys, /* 105 = unused */ + no_sys, /* 106 = unused */ + no_sys, /* 107 = unused */ + no_sys, /* 108 = (adddma) */ + no_sys, /* 109 = unused */ + no_sys, /* 110 = unused */ }; /* This should not fail with "array size is negative": */ extern int dummy[sizeof(call_vec) == NCALLS * sizeof(call_vec[0]) ? 1 : -1];