View | Details | Raw Unified | Return to bug 15860
Collapse All | Expand All

(-)sys/conf/param.c (-1 / +1 lines)
Lines 80-86 Link Here
80
int	maxproc = NPROC;			/* maximum # of processes */
80
int	maxproc = NPROC;			/* maximum # of processes */
81
int	maxprocperuid = NPROC-1;		/* maximum # of processes per user */
81
int	maxprocperuid = NPROC-1;		/* maximum # of processes per user */
82
int	maxfiles = MAXFILES;			/* system wide open files limit */
82
int	maxfiles = MAXFILES;			/* system wide open files limit */
83
int	maxfilesperproc = MAXFILES;		/* per-process open files limit */
83
int	maxfilesperproc = MAXFILES - 20;	/* per-process open files limit */
84
int	ncallout = 16 + NPROC + MAXFILES;	/* maximum # of timer events */
84
int	ncallout = 16 + NPROC + MAXFILES;	/* maximum # of timer events */
85
85
86
/* maximum # of mbuf clusters */
86
/* maximum # of mbuf clusters */

Return to bug 15860