Currently when a process has a command line that is more than 4k long, the internal buffer does not end up being null terminated and the kernel assumes that the process has called setproctitle. The net effect is that for processes with >4k command lines, the commnad line available via proc is terminated after argv[0]. This patch terminates >4k command lines with ... at the 4k mark. It has been only minimal tested in 2.4.21, but has been used quite a bit in 2.4.18. Ross