From mboxrd@z Thu Jan 1 00:00:00 1970 From: jnc@mercury.lcs.mit.edu (Noel Chiappa) Date: Sat, 9 Aug 2014 11:32:02 -0400 (EDT) Subject: [TUHS] unix v5 limitations Message-ID: <20140809153202.AB1CE18C0AC@mercury.lcs.mit.edu> > From: Mark Longridge > The first problem I had was I couldn't just cp over all the > /usr/source/s1 files to the new drive because of "Arg list too long" John Cowan nailed this; as an aside, I don't know about V5, but in vanilla V6 the entire argument list had to fit into one disk buffer (I would assume V5 is the same). The PWB changes to v6 included a rewrite of exec() to accumulate the argument list in swap space, so it could be much longer; the maximum length was a parameter, NCARGS, which was set to 5120 (10 blocks) by default. Noel