In Python multithreading, How to end the sub-thread which in blocking state when main thread received SIGINT signal?
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
add a comment |
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
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
add a comment |
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
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
python multithreading signals copy-paste interrupt
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
add a comment |
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
add a comment |
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
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