I was trying to figure out how to know if the threads of a process have been deadlocked on Unix/Linux machine? Also, is there a command for knowing what stage (or status) a process is in? If you know of any tools, please suggest. Thank you.
|
feedback
|
|
Try to use a tool that traces system calls, e.g ExampleOn RHEL4 there exists a... peculiarity... that may cause
This will typically enter a deadlock after a couple thousand iterations. Now, attach
where | |||||
feedback
|
|
UNIX guarantees that OS processes never gets in deadlock. No such guarantees are, however, made for user defined processes. As far as I know, there is no direct way of determining whether a process has been deadlocked. That said, you could determine the process state by | |||
feedback
|
|
Thanks to
| |||
|
feedback
|