strace of a lockup.  Captured with the following script (included in the
hopes that it might help someone else):

#!/bin/bash

if [ $EUID -ne 0 ]; then
    echo "You must be root to run this script."
    exit 0
fi

PROCESS=Xorg

sudo sh /etc/init.d/gdm start

pgrep $PROCESS > /dev/null 2>&1
while [ $? \!= 0 ]; do
    sleep 0.001
    pgrep $PROCESS > /dev/null 2>&1
done

sudo strace -o strace.txt -p `pgrep $PROCESS`

# end script

The script was needed because if i didn't start the strace right away,
it seemed I didn't get any output at all.

PLEASE NOTE: The strace.txt file has had the last 15,000 lines or so
clipped, since they were all the same.

** Attachment added: "strace.txt"
   http://launchpadlibrarian.net/9519086/strace.txt

-- 
ati driver lockup (mobility radeon rv350)
https://bugs.launchpad.net/bugs/141551
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to