From: Dmitry V. Levin Date: Mon, 5 Oct 2009 23:32:39 +0000 (+0000) Subject: * defs.h [HPPA]: Lower MAX_ARGS from 32 to 6. X-Git-Tag: v4.5.19~28 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=67874d8393499e3c7f0d5a950f2707758560f61f;p=strace * defs.h [HPPA]: Lower MAX_ARGS from 32 to 6. --- diff --git a/defs.h b/defs.h index 769ed225..9fd61224 100644 --- a/defs.h +++ b/defs.h @@ -64,7 +64,11 @@ #define DEFAULT_ACOLUMN 40 /* default alignment column for results */ #endif #ifndef MAX_ARGS -#define MAX_ARGS 32 /* maximum number of args to a syscall */ +# ifdef HPPA +# define MAX_ARGS 6 /* maximum number of args to a syscall */ +# else +# define MAX_ARGS 32 /* maximum number of args to a syscall */ +# endif #endif #ifndef DEFAULT_SORTBY #define DEFAULT_SORTBY "time" /* default sorting method for call profiling */