Hello 9fans, I have a question: what is the value of ARG_MAX of Plan9?
In Mac/OSX, the value is defined in /usr/include/sys/syslimits.h: #define ARG_MAX (256 * 1024) /* max bytes for an exec function */ In APE, we can find the value in Plan9 source. /sys/include/ape/sys/limits.h: #define ARG_MAX 16384 However, I couldn't find ARG_MAX of Plan9. Kenji Arisawa