In Python multithreading, How to end the sub-thread which in blocking state when main thread received SIGINT signal?










0















In Python multithreading, only the main thread can receive signals, and join() method will block the main thread and then can not receive signals



So after th main thread received the signal, how to end(/kill) the child thread which in the blocking state ?



The following code sub-thread receive_task1 is blocking in the os. read()(receiving serial data, and no data recieved yet) function.
Is there any way to let os. read () function exit?



Normally, If os. read() is used in the main thread and Ctrl + C can be used by default to interrupt, but how can this be best done now?



import os
import signal
import threading
import time

def test(signum, frame):
print("nreceived sig %d" % (signum))
print("how to make os.read(...) in rcv_task1 thread stop? ")
print("except use sys.exit(1)")

def receive_task1():
fd = os.open("/dev/ttyUSB1", os.O_RDWR)
os.read(fd, 10)
print("receive thread end")

signal.signal(signal.SIGINT, test)

rcv_task1 = threading.Thread(target=receive_task1)
rcv_task1.setDaemon(True)
rcv_task1.start()
while(1):
time.sleep(1)









share|improve this question






















  • Because the thread is in a blocking system call, the only way out is something that unblocks it: either the system call completes OK, or it fails. The easiest way to make it fail is to send a signal to the thread. The details vary from one OS to another.

    – torek
    Nov 14 '18 at 7:20















0















In Python multithreading, only the main thread can receive signals, and join() method will block the main thread and then can not receive signals



So after th main thread received the signal, how to end(/kill) the child thread which in the blocking state ?



The following code sub-thread receive_task1 is blocking in the os. read()(receiving serial data, and no data recieved yet) function.
Is there any way to let os. read () function exit?



Normally, If os. read() is used in the main thread and Ctrl + C can be used by default to interrupt, but how can this be best done now?



import os
import signal
import threading
import time

def test(signum, frame):
print("nreceived sig %d" % (signum))
print("how to make os.read(...) in rcv_task1 thread stop? ")
print("except use sys.exit(1)")

def receive_task1():
fd = os.open("/dev/ttyUSB1", os.O_RDWR)
os.read(fd, 10)
print("receive thread end")

signal.signal(signal.SIGINT, test)

rcv_task1 = threading.Thread(target=receive_task1)
rcv_task1.setDaemon(True)
rcv_task1.start()
while(1):
time.sleep(1)









share|improve this question






















  • Because the thread is in a blocking system call, the only way out is something that unblocks it: either the system call completes OK, or it fails. The easiest way to make it fail is to send a signal to the thread. The details vary from one OS to another.

    – torek
    Nov 14 '18 at 7:20













0












0








0








In Python multithreading, only the main thread can receive signals, and join() method will block the main thread and then can not receive signals



So after th main thread received the signal, how to end(/kill) the child thread which in the blocking state ?



The following code sub-thread receive_task1 is blocking in the os. read()(receiving serial data, and no data recieved yet) function.
Is there any way to let os. read () function exit?



Normally, If os. read() is used in the main thread and Ctrl + C can be used by default to interrupt, but how can this be best done now?



import os
import signal
import threading
import time

def test(signum, frame):
print("nreceived sig %d" % (signum))
print("how to make os.read(...) in rcv_task1 thread stop? ")
print("except use sys.exit(1)")

def receive_task1():
fd = os.open("/dev/ttyUSB1", os.O_RDWR)
os.read(fd, 10)
print("receive thread end")

signal.signal(signal.SIGINT, test)

rcv_task1 = threading.Thread(target=receive_task1)
rcv_task1.setDaemon(True)
rcv_task1.start()
while(1):
time.sleep(1)









share|improve this question














In Python multithreading, only the main thread can receive signals, and join() method will block the main thread and then can not receive signals



So after th main thread received the signal, how to end(/kill) the child thread which in the blocking state ?



The following code sub-thread receive_task1 is blocking in the os. read()(receiving serial data, and no data recieved yet) function.
Is there any way to let os. read () function exit?



Normally, If os. read() is used in the main thread and Ctrl + C can be used by default to interrupt, but how can this be best done now?



import os
import signal
import threading
import time

def test(signum, frame):
print("nreceived sig %d" % (signum))
print("how to make os.read(...) in rcv_task1 thread stop? ")
print("except use sys.exit(1)")

def receive_task1():
fd = os.open("/dev/ttyUSB1", os.O_RDWR)
os.read(fd, 10)
print("receive thread end")

signal.signal(signal.SIGINT, test)

rcv_task1 = threading.Thread(target=receive_task1)
rcv_task1.setDaemon(True)
rcv_task1.start()
while(1):
time.sleep(1)






python multithreading signals copy-paste interrupt






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Nov 14 '18 at 7:14









neucrackneucrack

11




11












  • Because the thread is in a blocking system call, the only way out is something that unblocks it: either the system call completes OK, or it fails. The easiest way to make it fail is to send a signal to the thread. The details vary from one OS to another.

    – torek
    Nov 14 '18 at 7:20

















  • Because the thread is in a blocking system call, the only way out is something that unblocks it: either the system call completes OK, or it fails. The easiest way to make it fail is to send a signal to the thread. The details vary from one OS to another.

    – torek
    Nov 14 '18 at 7:20
















Because the thread is in a blocking system call, the only way out is something that unblocks it: either the system call completes OK, or it fails. The easiest way to make it fail is to send a signal to the thread. The details vary from one OS to another.

– torek
Nov 14 '18 at 7:20





Because the thread is in a blocking system call, the only way out is something that unblocks it: either the system call completes OK, or it fails. The easiest way to make it fail is to send a signal to the thread. The details vary from one OS to another.

– torek
Nov 14 '18 at 7:20












0






active

oldest

votes











Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53294888%2fin-python-multithreading-how-to-end-the-sub-thread-which-in-blocking-state-when%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes















draft saved

draft discarded
















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53294888%2fin-python-multithreading-how-to-end-the-sub-thread-which-in-blocking-state-when%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







這個網誌中的熱門文章

Barbados

How to read a connectionString WITH PROVIDER in .NET Core?

Node.js Script on GitHub Pages or Amazon S3