Searched defs:ARG_MAX (Results 1 - 1 of 1) sorted by relevance

/systemd/src/basic/
H A Denv-util.c40 #ifndef ARG_MAX
41 #define ARG_MAX ((size_t) sysconf(_SC_ARG_MAX)) macro
57 * be > ARG_MAX, an individual assignment hence cannot be
59 * hence leaves ARG_MAX-2 as longest possible variable
61 if (n > ARG_MAX - 2)
91 * be > ARG_MAX, an individual assignment hence cannot be
94 * ARG_MAX-3 as longest possible variable value. */
95 if (strlen(e) > ARG_MAX - 3)
115 * be > ARG_MAX, hence the individual variable assignments
118 if (strlen(e) > ARG_MAX
[all...]

Completed in 10 milliseconds