I want to know how to kill a specific running thread (say by its id)
I want to know how to kill a specific running thread (say by its id)
for now I run and kill a thread like the following:
# start thread
thread1 = threading.Thread(target= self.some_func(), args=( ...,), ) >thread1.start()
# kill the thread
event_thread1 = threading.Event()
event_thread1.set()
I know that set() will kill all running threads, but if there was thread2
as well and I want to kill only thread1?
On 25Sep2024 19:24, marc nicole <mk1853387@gmail.com> wrote:
I want to know how to kill a specific running thread (say by its id)
for now I run and kill a thread like the following:
# start thread
thread1 = threading.Thread(target= self.some_func(), args=( ...,), ) >thread1.start()
# kill the thread
event_thread1 = threading.Event()
event_thread1.set()
I know that set() will kill all running threads, but if there was thread2 >as well and I want to kill only thread1?
No, `set()` doesn't kill a thread at all. It sets the `Event`, and each thread must be checking that event regularly, and quitting if it becomes
set.
You just need a per-thred vent instead of a single Event for all the
threads.
Cheers,
Cameron Simpson <cs@cskk.id.au>
--
https://mail.python.org/mailman/listinfo/python-list
How to create a per-thread event in Python 2.7?
Hello guys,)
I want to know how to kill a specific running thread (say by its id)
for now I run and kill a thread like the following:
# start thread
thread1 =3D threading.Thread(target=3D self.some_func(), args=3D( ...,), =
thread1.start()
# kill the thread
event_thread1 =3D threading.Event()
event_thread1.set()
I know that set() will kill all running threads, but if there was thread2
as well and I want to kill only thread1?
Thanks!
--
https://mail.python.org/mailman/listinfo/python-list
Sysop: | Tetrazocine |
---|---|
Location: | Melbourne, VIC, Australia |
Users: | 4 |
Nodes: | 8 (0 / 8) |
Uptime: | 215:24:10 |
Calls: | 73 |
Calls today: | 1 |
Files: | 21,500 |
Messages: | 73,914 |