given the process pid, there are two ways to find out where it's hanging:

depending on os:
% truss -p $pid
 or
% strace -p)

and

% gdb /usr/local/apache/bin/httpd $pid
(gdb) where

-Doug

Reply via email to