Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9242843
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T08:40:19+00:00 2026-06-18T08:40:19+00:00

I have several daemon threads in my Python application. When my main function exits,

  • 0

I have several daemon threads in my Python application. When my main function exits, these daemon threads terminate (as expected) and the program closes. But I want a way to essentially “restart” my program without exiting and starting it again. Is there a way to “force close” all of my daemon threads without calling sys.exit()?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-18T08:40:21+00:00Added an answer on June 18, 2026 at 8:40 am

    Mostly depends on your needs. If you want to save same type and reload
    the application automatically this is not very difficult, take the
    following example:

    #!/usr/bin/env python
    
    import sys, os, time
    
    t = int(sys.argv[1])
    print 'hello, I am', t
    time.sleep(t)
    if t > 2:
        sys.exit()
    os.execl(sys.argv[0], sys.argv[0], str(t+1))
    

    the script restarts itself while a certain condition is satisfied, then
    exists. You could restart the application based on an event or a
    signal, for example after a SIGHUP.

    If you need also to save the current state the things are more
    complicated. You can save the state of the application in a file before
    restarting it and reload the state during the startup routine or you
    have to instruct the daemon threads to exit on certain condition:

    import threading, signal, time
    
    should_restart = False
    cond = threading.Event()
    exit = threading.Event()
    threads = []
    
    def start(num=3):
        for i in range(num):
            t = threading.Thread(target=foo, args=[cond])
            threads.append(t)
            t.daemon = True
            print 'hello, I am', t.name
            t.start()
    
    def restart(signum, frame):
        global should_restart
        should_restart = False
        cond.set()
        for thread in threads:
            thread.join()
            print 'bye bye', thread.name
        cond.clear()
        start()
    
    def foo(should_exit):
        while not should_exit.is_set():
            time.sleep(0.2)
    
    signal.signal(signal.SIGHUP, restart)
    signal.signal(signal.SIGINT, lambda n, f: exit.set())
    start()
    
    while not exit.is_set():
        time.sleep(0.2)
    

    I hope these two example are useful to you to better understand your needs.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

We have an application that creates several threads using the pthread library. As we
I have several threads running in parallel from Python on a cluster system. Each
I have several questions regarding Python threads. Is a Python thread a Python or
I have several listviews with two collumns like. I am building a stats application
I have a Ruby Rails application using Resque. The Resuqe daemon crashes after running
I have several smart devices that run Windows CE5 with our application written in
We have several large subprojects inside our main SVN project root. I commit and
I have several sliders on the same page and but don't show all at
I have several python processes which monitor and act upon physical IO. E.g. shut
I have several xml files with different node structure. I want to extract xml

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.