How To Call A Multi-threaded C Function In Cython?
I have a question about how to call a multi-threaded C function in Cython. Do I need to release/acquire the GIL before/after I do the multi-threaded stuff in the C function? Or can
Solution 1:
You should have looked down a few sections.
http://docs.python.org/c-api/init.html#non-python-created-threads
Post a Comment for "How To Call A Multi-threaded C Function In Cython?"