]> granicus.if.org Git - strace/commitdiff
* defs.h [HPPA]: Lower MAX_ARGS from 32 to 6.
authorDmitry V. Levin <ldv@altlinux.org>
Mon, 5 Oct 2009 23:32:39 +0000 (23:32 +0000)
committerDmitry V. Levin <ldv@altlinux.org>
Mon, 5 Oct 2009 23:32:39 +0000 (23:32 +0000)
defs.h

diff --git a/defs.h b/defs.h
index 769ed225d5f5008ade299a24635be00134d9528a..9fd612245b561104662d47fa691737fa904d899a 100644 (file)
--- a/defs.h
+++ b/defs.h
 #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 */