myopc wrote:
> hi, all
>  I am ruuning a c++ program (boost python) , which create many python
> interpreaters and each run a python script with use multi-thread
> (threading).
> when the c++ main program exit, I want to shut down python
> interpreaters, but it crashed. I have googled a lot but cant get any clue.
> here is my code, your suggestion will be greatly appreciated.
> 

There is no clean way to terminate a thread cleanly from outside. You
need to let the thread terminates by itself. If it is a pure python
code, this can be done by one of:
1) setting a global/thread stop value that is checked by each threads
2) inserting a QUIT event to the event-loop


I have never used boost before, so I don't know what it can and cannot
do from outside the python's interpreter. However, this should give you
an idea of what to do...
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to