I'm trying to get some information from inside long running cython functions (an ODE solver).
I've tried creating a signal handler which walks up the stack (using frame.f_back
), but it appears this doesn't include cython frames.
Is it possible to access any cython frame from python?