Sven, Am 08.12.2011 um 11:06 schrieb Sven Van Caekenberghe:
On 08 Dec 2011, at 10:50, Norbert Hartl wrote:
Sorry, but I don't understand what your saying.
Run your image on Linux or Mac OS X using a Miranda Banda Cog VM, find the process ID of the VM, and kill it with SIGUSR1, which will not actually kill it but will write the crash.dmp file:
[sven@voyager:~/smalltalk]$ ps auxww | grep Cog sven 4943 3.5 1.0 1237260 40852 ?? R 11:03AM 0:01.03 /Users/sven/apps/Smalltalk/Virtual-Machines/Cog.app/Contents/MacOS/Croquet -psn_0_1200421 [sven@voyager:~/smalltalk]$ kill -s SIGUSR1 4943 [sven@voyager:~/smalltalk]$ ls *.dmp crash.dmp [sven@voyager:~/smalltalk]$ less crash.dmp
I didn't get that Javier meant the same as Eliot. What should be done is pretty clear to me after dealing 20 years with unix ;) But thank you very much for explaining. I didn't know about the -s switch in kill. I always just do kill -USR1 ... Norbert