HomeSort by relevance Sort by last modified time
    Searched defs:ARG_MAX (Results 1 - 4 of 4) sorted by null

  /onnv/onnv-gate/usr/src/lib/libast/common/misc/
cmdarg.c 37 #ifndef ARG_MAX
38 #define ARG_MAX (64*1024)
87 if ((x = strtol(astconf("ARG_MAX", NiL, NiL), NiL, 0)) <= 0)
88 x = ARG_MAX;
  /onnv/onnv-gate/usr/src/head/
limits.h 63 * ARG_MAX is calculated as follows:
70 #define ARG_MAX _ARG_MAX64 /* max length of arguments to exec */
72 #define ARG_MAX _ARG_MAX32 /* max length of arguments to exec */
  /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/ext/File/Glob/
bsd_glob.c 97 #ifndef ARG_MAX
99 # define ARG_MAX 65536 /* Mac OS is actually unlimited */
102 # define ARG_MAX (sysconf(_SC_ARG_MAX))
105 # define ARG_MAX _POSIX_ARG_MAX
108 # define ARG_MAX 14500 /* from VC's limits.h */
110 # define ARG_MAX 4096 /* from POSIX, be conservative */
1044 newsize + *limitp >= ARG_MAX) {
    [all...]
  /onnv/onnv-gate/usr/src/lib/libshell/common/sh/
init.c 90 #ifndef ARG_MAX
91 # define ARG_MAX (1*1024*1024)
1100 shp->lim.arg_max = getconf("ARG_MAX");
1106 if(shp->lim.arg_max <=0)
1107 shp->lim.arg_max = ARG_MAX;
    [all...]

Completed in 480 milliseconds