On 7 Sep, 07:17, grbgooglefan <ganeshbo...@gmail.com> wrote:

> What is best way to embed python in multi-threaded C++ application?

Did you remeber to acquire the GIL? The GIL is global to the process
(hence the name).

void foobar(void)
{
    PyGILState_STATE state = PyGILState_Ensure();

    /* Safe to use Python C API here */

    PyGILState_Release(state);
}


S.M.











> Please guide.

-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to