Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
631 views
in Technique[技术] by (71.8m points)

python - Check if the Main Thread is still alive from another thread

How can I check if the Main Thread is alive from another ( non-daemon, child ) thread?

The child thread is a non-daemon thread and I'd like to check if the Main thread is still running or not, and stop this non-daemon thread based on the result.

( Making the thread daemon is not good for my situation because my thread writes to stdout which creates problems when the thread is set as a daemon)

Using python 2.7

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)
  • For Python 2.7 you can try this:

    for i in threading.enumerate():
       if i.name == "MainThread":
           print i.is_alive()
    

    The usage of lower camel case in function names is deprecated and so you should be using i.is_alive() instead of i.isAlive().

  • If you like one-liners try this:

    is_main_thread_active = lambda : any((i.name == "MainThread") and i.is_alive() for i in threading.enumerate())
    

    Then call is_main_thread_active() to check if the Main Thread is active.

    For one time use, however, you could use this directly without creating a function.

    any((i.name == "MainThread") and i.is_alive() for i in threading.enumerate())

  • Check this page for more info about threading.

  • In python 3.4 a dedicated function to return the main thread exists and so you can use this one liner to see if your main thread is still alive..

    threading.main_thread().is_alive()
    

Hope this helps you.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...