W. Wayne Liauh wrote: >>> X-window crashed (reproducible) in SX81 after >> screen went into suspend mode or during powering off. >> This problem was not experienced in SXDE4 or in >> pre-81. >> >> a stack trace available? >> > > What/how should I do to get the stack trace you want? > For Xorg, the easiest way is to get it live with a remote system. Login from the remote system. Get the process id:
# /usr/ucb/ps -auxww | grep Xorg root 102765 0.0 0.1 1620 988 pts/4 S 20:18:35 0:00 grep Xorg rugrat 100602 0.0 2.55848852184 ? S Feb 10 0:32 /usr/X11/bin/Xorg :0 -depth 24 -nolisten tcp -nobanner -auth /var/dt/A:0-91q9ig # Assuming you are running on a 64 bit system, attach the debugger to the Xorg process and mask off signals: # dbx /usr/X11/bin/amd64/Xorg 100603 For information about new features see `help changes' To remove this message, put `dbxenv suppress_startup_message 7.7' in your .dbxrc Reading Xorg ... (dbx) ignore PIPE (dbx) ignore POLL (dbx) ignore TERM (dbx) cont Now get it to fail and type "where" in the debugger.
