greycat 1236798338 learn #redirect arg_max cdown 1362209610 forget cdown 1362209729 learn On Linux, the kernel constant ARG_MAX historically hardcoded the maximum length of arguments, but since 2.6.?? it is contextual to the system. http://www.in-ulm.de/~mascheck/various/argmax/ cdown 1362209821 forget cdown 1362209917 learn ARG_MAX defines the maximum numer of bytes that can be passed to exec(3). On modern Linux it is mostly historic, as since libc 2.8 it is determined depending on the system. # http://www.in-ulm.de/~mascheck/various/argmax/ cdown 1362210043 forget cdown 1362210102 learn The kernel constant ARG_MAX defines the maximum numer of bytes that can be passed to exec(3). On Linux since libc 2.8, this value is determined dynamically based upon the system, and is not hardcoded. # http://www.in-ulm.de/~mascheck/various/argmax/ cdown 1362210131 forget cdown 1362210137 learn The kernel constant ARG_MAX defines the maximum number of bytes that can be passed to exec(3). On Linux since libc 2.8, this value is determined dynamically based upon the system, and is not hardcoded. # http://www.in-ulm.de/~mascheck/various/argmax/