Hi !
I’m working on an app with OpenFrameworks 0.8.4, and I want to stop cleanly my app when I receive a signal (SIGINT, SIGABRT or SIGTERM). But I have a problem : when I send any signal, it looks like my app crashes and the sighandler method in ofAppRunner is never called.
I tested on the EmptyExample, and the result is the same.
Here is what I send : killall -2 emptyExampleDebug
And the app seems to always stop in glfwSwapBuffers() function, at line 362 in ofAppGLFWWindow.cpp, instead of calling the sighandler method.
Did I miss something ? I don’t understand why the handler doesn’t catch signals.
I work on OS X 10.9.5, Xcode v5.1.1