2002-12-26 Roland McGrath <roland@redhat.com>

* defs.h [LINUX && MIPS] (MAX_QUALS): Set to 5000, not 4999.
	From Daniel Jacobowitz <drow@false.org>.
This commit is contained in:
Roland McGrath 2002-12-30 00:25:36 +00:00
parent 044c8d2cea
commit 63d0146e83

4
defs.h
View File

@ -39,8 +39,8 @@
/* configuration section */
#ifndef MAX_QUALS
#if defined(linux) && defined(MIPS)
#define MAX_QUALS 4999 /* maximum number of syscalls, signals, etc. */
#if defined(LINUX) && defined(MIPS)
#define MAX_QUALS 5000 /* maximum number of syscalls, signals, etc. */
#else
#define MAX_QUALS 2048 /* maximum number of syscalls, signals, etc. */
#endif