Skip to content
Snippets Groups Projects
Commit 9b93d941 authored by Lars Kanis's avatar Lars Kanis
Browse files

Move the clearing of the event before the call to rb_thread_call_with_gvl().

This should ensure, that the event is definitely cleared.

These functions should be thread safe.
parent 6383f253
No related branches found
No related tags found
No related merge requests found
......@@ -111,6 +111,15 @@ FXuint FXRbApp::getSleepTime() const {
}
long FXRbApp::onChoreThreads(FXObject *obj,FXSelector sel,void *p){
#if defined(HAVE_RB_THREAD_CALL_WITHOUT_GVL)
#ifdef WIN32
ResetEvent(interrupt_event);
#else
char byte;
// clear the pipe
read(interrupt_fds[0], &byte, 1);
#endif
#endif
return FXRbApp_onChoreThreads(this, obj, sel, p);
}
......@@ -121,13 +130,6 @@ long FXRbApp_onChoreThreads_gvlcb(FXRbApp *self,FXObject *obj,FXSelector sel,voi
// Process threads
long FXRbApp::onChoreThreads_gvlcb(FXObject*,FXSelector,void*){
#if defined(HAVE_RB_THREAD_CALL_WITHOUT_GVL)
#ifdef WIN32
ResetEvent(interrupt_event);
#else
char byte;
// clear the pipe
read(interrupt_fds[0], &byte, 1);
#endif
#else
// Pause for 'sleepTime' millseconds
struct timeval wait;
......@@ -157,7 +159,7 @@ void fxrb_wakeup_fox(void *){
#ifdef WIN32
SetEvent(FXRbApp::interrupt_event);
#else
int l = write(FXRbApp::interrupt_fds[1], "X", 1);
write(FXRbApp::interrupt_fds[1], "X", 1);
#endif
}
#endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment