Is it possible to terminate a running thread without setting/checking any flags/semaphores/etc.?
|
|
|
It is generally a bad pattern to kill a thread abruptly, in python and in any language. Think of the following cases:
The nice way of handling this if you can afford it (if you are managing your own threads) is to have an exit_request flag that each threads checks on regular interval to see if it is time for him to exit. For example:
In this code, you should call stop() on the thread when you want it to exit, and wait for the thread to exit properly using join(). The thread should check the stop flag at regular intervals. They are cases however when you really need to kill a thread, for example when you are wrapping an external library that is busy for long calls and you want to interrupt it. The following code allows (with some restrictions) to raise an Exception in a python thread:
As noted in the documentation, this is not a magic bullet because if the thread is busy outside the python interpreter, it will not catch the interruption. A good usage pattern of this code is to have the thread catch a specific exception and perform the cleanup. That way, you can interrupt a task and still have proper cleanup. |
|||||||||||||||||||||
|
|
There is no official API to do that, no. You need to use platform API to kill the thread, e.g. pthread_kill, or TerminateThread. You can access such API e.g. through pythonwin, or through ctypes. Notice that this is inherently unsafe. It will likely lead to uncollectable garbage (from local variables of the stack frames that become garbage), and may lead to deadlocks, if the thread being killed has the GIL at the point when it is killed. |
|||||
|
|
Here's how to do it:
Give it a few seconds then your thread should be stopped. Check also the I'd recommend a |
|||||||||||||||||
|
|
If you are trying to terminate the whole program you can set the thread as a "daemon". see Thread.daemon |
|||||
|
|
You should never forcibly kill a thread without cooperating with it. Killing a thread removes any guarantees that try/finally blocks set up so you might leave locks locked, files open, etc. The only time you can argue that forcibly killing threads is a good idea is to kill a program fast, but never single threads. |
|||
|
|
|
It is better if you don't kill a thread. A way could be to introduce a "try" block into the thread's cycle and to throw an exception when you want to stop the thread (for example a break/return/... that stops your for/while/...). I've used this on my app and it works... |
|||
|
|
|
A In the cases where I want to kill a thread, but do not want to use flags/locks/signals/semaphores/events/whatever, I promote the threads to full blown processes. For code that makes use of just a few threads the overhead is not that bad. E.g. this comes in handy to easily terminate helper "threads" which execute blocking I/O The conversion is trivial: In related code replace all |
|||
|
|
|
You can kill a thread by installing trace into the thread that will exit the thread. See attached link for one possible implementation. |
|||||||||||||||||
|
t is your Thread object. Read the python source (Modules/threadmodule.c and Python/thread_pthread.h) you can see the Thread.ident is an pthread_t type, so you can do anything pthread can do in python use libpthread. |
|||
|
|
|
In Python, you simply cannot kill a Thread directly. If you do NOT really need to have a Thread (!), what you can do, instead of using the threading package (http://docs.python.org/2/library/threading.html), is to use the multiprocessing package (http://docs.python.org/2/library/multiprocessing.html). Here, to kill a process, you can simply call the method:
Python will kill your process (on Unix through the SIGTERM signal, while on Windows through the TerminateProcess() call). Pay attention to use it while using a Queue or a Pipe! (it may corrupt the data in the Queue/Pipe) Note that the multiprocessing.Event and the multiprocessing.Semaphore work exactly in the same way of the threading.Event and the threading.Semaphore respectively. In fact, the first ones are clones of the latters. If you REALLY need to use a Thread, there is no way to kill it directly. What you can do, however, is to use a "daemon thread". In fact, in Python, a Thread can be flagged as daemon:
The main program will exit when no alive non-daemon threads are left. In other words, when your main thread (which is, of course, a non-daemon thread) will finish its operations, the program will exit even if there are still some daemon threads working. Note that it is necessary to set a Thread as daemon before the start() method is called! Of course you can, and should, use daemon even with multiprocessing. Here, when the main process exits, it attempts to terminate all of its daemonic child processes. Finally, please, note that sys.exit() and os.kill() are not choices. |
|||
|
|
|
This is based on http://code.activestate.com/recipes/496960-thread2-killable-threads/ You need to call PyThreadState_SetasyncExc(), which is only available through ctypes. This has only been tested on Python 2.7.3, but it is likely to work with other recent 2.x releases.
|
|||
|
|