1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-18 15:30:21 +00:00

Document that arg max is controllable via sysctl.

This commit is contained in:
Alexander Langer 1998-01-11 21:43:38 +00:00
parent 1616db3cf8
commit 6eba99b0db
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=32447

View File

@ -30,6 +30,7 @@
.\" SUCH DAMAGE. .\" SUCH DAMAGE.
.\" .\"
.\" @(#)execve.2 8.5 (Berkeley) 6/1/94 .\" @(#)execve.2 8.5 (Berkeley) 6/1/94
.\" $Id$
.\" .\"
.Dd June 1, 1994 .Dd June 1, 1994
.Dt EXECVE 2 .Dt EXECVE 2
@ -239,12 +240,12 @@ The new process requires more virtual memory than
is allowed by the imposed maximum is allowed by the imposed maximum
.Pq Xr getrlimit 2 . .Pq Xr getrlimit 2 .
.It Bq Er E2BIG .It Bq Er E2BIG
The number of bytes in the new process's argument list The number of bytes in the new process' argument list
is larger than the system-imposed limit. is larger than the system-imposed limit.
The limit in the system as released is 65536 bytes This limit is specified by the
.Pf ( Dv NCARGS .Xr sysctl 3
in MIB variable
.Ao Pa sys/param.h Ac ) . .Dv KERN_ARGMAX .
.It Bq Er EFAULT .It Bq Er EFAULT
The new process file is not as long as indicated by The new process file is not as long as indicated by
the size values in its header. the size values in its header.
@ -271,6 +272,7 @@ of a super-user as well.
.Xr fork 2 , .Xr fork 2 ,
.Xr execl 3 , .Xr execl 3 ,
.Xr exit 3 , .Xr exit 3 ,
.Xr sysctl 3 ,
.Xr environ 7 .Xr environ 7
.Sh HISTORY .Sh HISTORY
The The