Re: Thread Dump of a python process

2006-02-10 Thread Peter Hansen
Shanon wrote: > Thank you for your info. Now I have read that a simple call os.getpid() > returned the linux identifier of the thread in latest python versions, but > I'm using Python 2.3 and 2.4 and this call returns always the same id > I only want to take the pid of the thread but isn't as easi

Re: Thread Dump of a python process

2006-02-10 Thread Peter Hansen
Shanon wrote: > Thank you for your info. Now I have read that a simple call os.getpid() > returned the linux identifier of the thread in latest python versions, but > I'm using Python 2.3 and 2.4 and this call returns always the same id > I only want to take the pid of the thread but isn't as easi

Re: Thread Dump of a python process

2006-02-10 Thread Shanon
Thank you for your info. Now I have read that a simple call os.getpid() returned the linux identifier of the thread in latest python versions, but I'm using Python 2.3 and 2.4 and this call returns always the same id I only want to take the pid of the thread but isn't as easier as it seems. -- Vi

Re: thread dump

2006-02-09 Thread Peter Hansen
jsuch wrote: > I'm using Fedora core 3 and python 2.4.2, is there any way to obtain > the linux pid of a python thread? I need it because I want to know CPU > usage per thread. Not sure if you were the same person that posted this request not six minutes earlier under a thread titled "Thread Dump

Re: Thread Dump of a python process

2006-02-09 Thread Peter Hansen
Shanon wrote: > I would to know if there're some way to have a dump of all the threads > started by a python process. I want to see the TID corresponding of each > thread because I need them to get the CPU time of each thread by the command > top. threading.enumerate() will return a list of all th