Revision [1276]
Last edited on 2008-01-10 02:49:06 by WikiAdminAdditions:
==Tracing a hung process==
Do a strace -p on the process, if it ends with
read(13,
That means the system is hung on a read system call, to the file descriptor 13. Do a **lsof** to find out what fd #13 is.
Do a strace -p on the process, if it ends with
read(13,
That means the system is hung on a read system call, to the file descriptor 13. Do a **lsof** to find out what fd #13 is.