View | Details | Raw Unified | Return to bug 241710 | Differences between
and this patch

Collapse All | Expand All

(-)sys/sys/syslimits.h (-1 / +5 lines)
Lines 48-54 Link Here
48
 * Do not add any new variables here.  (See the comment at the end of
48
 * Do not add any new variables here.  (See the comment at the end of
49
 * the file for why.)
49
 * the file for why.)
50
 */
50
 */
51
#define	ARG_MAX			262144	/* max bytes for an exec function */
51
#ifndef __ILP32__
52
#define	ARG_MAX	      (3 * 256 * 1024)	/* max bytes for an exec function */
53
#else
54
#define	ARG_MAX		  (256 * 1024)	/* max bytes for KVA-starved archs */
55
#endif
52
#ifndef CHILD_MAX
56
#ifndef CHILD_MAX
53
#define	CHILD_MAX		   40	/* max simultaneous processes */
57
#define	CHILD_MAX		   40	/* max simultaneous processes */
54
#endif
58
#endif

Return to bug 241710