summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorobrien <obrien@FreeBSD.org>2005-02-18 08:01:59 +0000
committerobrien <obrien@FreeBSD.org>2005-02-18 08:01:59 +0000
commit7aa570c0ee4fbd751aede6a8bc83b4db61e7ff53 (patch)
treebb9be23266b9edbb8bb4928589e60c381bfb59f2
parent1da3314647c31c3f08a9dbb819251efc969e2261 (diff)
downloadFreeBSD-src-7aa570c0ee4fbd751aede6a8bc83b4db61e7ff53.zip
FreeBSD-src-7aa570c0ee4fbd751aede6a8bc83b4db61e7ff53.tar.gz
For non-embedded platforms, increase the size of the argument list.
Note that this results in more kernel virtual memory being reserved for temporary storage of the args. The args temporary space is allocated out of exec_map (a submap of kernel_map). This will use roughly 4MB of KVM. OK'ed by: dg
-rw-r--r--sys/sys/syslimits.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/sys/sys/syslimits.h b/sys/sys/syslimits.h
index dfe8897..974e173 100644
--- a/sys/sys/syslimits.h
+++ b/sys/sys/syslimits.h
@@ -43,7 +43,11 @@
* Do not add any new variables here. (See the comment at the end of
* the file for why.)
*/
+#if defined(__arm__) || defined(__powerpc__)
#define ARG_MAX 65536 /* max bytes for an exec function */
+#else
+#define ARG_MAX 262144 /* max bytes for an exec function */
+#endif
#ifndef CHILD_MAX
#define CHILD_MAX 40 /* max simultaneous processes */
#endif
OpenPOWER on IntegriCloud