I cannot get a way to terminate a thread that is hung in a socket.recvfrom() call. For example, ctrl+c that should trigger KeyboardInterrupt exception can’t be caught. Here is a script I’ve used for testing:
from socket import *
from threading import Thread
from sys import exit
class TestThread(Thread):
def __init__(self,host="localhost",port=9999):
self.sock = socket(AF_INET,SOCK_DGRAM)
self.sock.bind((host,port))
super(TestThread,self).__init__()
def run(self):
while True:
try:
recv_data,addr = self.sock.recvfrom(1024)
except (KeyboardInterrupt, SystemExit):
sys.exit()
if __name__ == "__main__":
server_thread = TestThread()
server_thread.start()
while True: pass
The main thread (the one that executes infinite loop) exits. However the thread that I explicitly create, keeps hanging in recvfrom().
Please, help me resolve this.
Keyboard interrupts are always caught on the main thread — never on “child” threads. To avoid
server_threadkeeping the process alive when the main thread exits, dobefore you call
server_thread.start().BTW, your
while True: passin the main thread is needlessly burning CPU cycles. You should at least change it to something likewhile True: time.sleep(1.0). But that doesn’t change the semantics of your code — just gets it down from 99% CPU or so, to (I’d guess) < 5%;-).