> # ulimit -c unlimited > # kill -QUIT pid; kill -ILL pid... > But no core dump is produced.
The limits are attributes of each process (that's why ulimit is an internal command, not /bin/ulimit), and they are inherited over fork. So you need to run ulimit in the shell that launches the application, not in the one that runs kill. /alessandro _______________________________________________ busybox mailing list [email protected] http://lists.busybox.net/mailman/listinfo/busybox
