1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-29 11:41:21 +03:00

linux: sysconf: Use a more explicit maximum_ARG_MAX

This commit is contained in:
Adhemerval Zanella
2021-04-13 17:45:14 -03:00
parent a9880586ee
commit bdc12a77b7

View File

@ -35,7 +35,7 @@
/* Newer kernels (4.13) limit the maximum command line arguments lengths to
6MiB. */
#define maximum_ARG_MAX 6291456
#define maximum_ARG_MAX (6 * 1024 * 1024)
static long int posix_sysconf (int name);