Re: Dumping the state of a deadlocked process

2006-10-07 Thread MrJean1
[EMAIL PROTECTED] wrote: > MrJean1 wrote: > > Did you try using the signal module? If not, a basic example is here > > which may need to be > > extended. > > I looks useful. I gave it a try, and the only weakness it has is that > when my process locks, it

Re: Dumping the state of a deadlocked process

2006-10-07 Thread fumanchu
Dennis Lee Bieber wrote: > On 6 Oct 2006 12:59:31 -0700, [EMAIL PROTECTED] declaimed the > following in comp.lang.python: > > > I'm currently having some issues with a process getting deadlocked. The > > problem is that the only way I can seem to find information about where > > it deadlocks is by

Re: Dumping the state of a deadlocked process

2006-10-07 Thread Ziga Seilnacht
[EMAIL PROTECTED] wrote: > Hi all > > I'm currently having some issues with a process getting deadlocked. The > problem is that the only way I can seem to find information about where > it deadlocks is by making a wild guess, insert a pdb.set_trace() before > this point, and then step until it lock

Re: Dumping the state of a deadlocked process

2006-10-07 Thread andre . naess
MrJean1 wrote: > Did you try using the signal module? If not, a basic example is here > which may need to be > extended. I looks useful. I gave it a try, and the only weakness it has is that when my process locks, it locks so badly that it doesn't respon

Re: Dumping the state of a deadlocked process

2006-10-07 Thread Hendrik van Rooyen
<[EMAIL PROTECTED]> wrote: > Hi all > > I'm currently having some issues with a process getting deadlocked. The > problem is that the only way I can seem to find information about where > it deadlocks is by making a wild guess, insert a pdb.set_trace() before > this point, and then step until it l

Re: Dumping the state of a deadlocked process

2006-10-06 Thread MrJean1
Did you try using the signal module? If not, a basic example is here which may need to be extended. /Jean Brouwers [EMAIL PROTECTED] wrote: > Hi all > > I'm currently having some issues with a process getting deadlocked. The > problem is that the only w