[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.python

Re: How to determine if threads are active in an application?

Gabriel Genellina

3/9/2010 6:04:00 AM

En Fri, 26 Feb 2010 19:10:30 -0300, <python@bdurham.com> escribió:

> Is there technique to determine if threads are active in a Python
> application?
>
> The only technique I can think of is to check sys.modules for
> thread and threading. But this will only show whether these
> modules were imported - not whether there are actually background
> threads running.

I've just read your post.
Look at threading.activeCount() - this returns only those threads created
using the threading module. If that's not enough, you'll have to use some
OS-specific functions.

--
Gabriel Genellina