From: Roland McGrath Date: Mon, 30 Dec 2002 00:25:36 +0000 (+0000) Subject: 2002-12-26 Roland McGrath X-Git-Tag: v4.5.18~926 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=63d0146e83740af65b49b301772084c53c7d4598;p=strace 2002-12-26 Roland McGrath * defs.h [LINUX && MIPS] (MAX_QUALS): Set to 5000, not 4999. From Daniel Jacobowitz . --- diff --git a/defs.h b/defs.h index c2f8ee6c..fecafee1 100644 --- a/defs.h +++ b/defs.h @@ -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