#include <gdk/gdk.h>
-
/////////////////////////////////////////////////////////////////////////////
// Static variables
/////////////////////////////////////////////////////////////////////////////
ThreadExitProc(gpointer WXUNUSED(client), gint fid,
GdkInputCondition WXUNUSED(cond))
{
- wxThread* ptr;
+ wxThread* ptr;
+
+ // printf( "thread exit proc.\n" );
- if (fid != p_thrd_pipe[0])
- return;
- if (read(fid, &ptr, sizeof(ptr)) == sizeof(ptr)) {
- //fprintf(stderr, "calling OnExit %p\n", ptr);
- ptr->OnExit();
- } else {
- //fprintf(stderr, "this should never happen\n");
- }
+ if (fid != p_thrd_pipe[0])
+ return;
+
+ if (read(fid, &ptr, sizeof(ptr)) == sizeof(ptr))
+ {
+ // printf( "calling OnExit %p\n", ptr);
+ ptr->OnExit();
+ }
+ else
+ {
+ // printf( "this should never happen\n" );
+ }
}
// Global initialization
close(p_thrd_pipe[0]);
close(p_thrd_pipe[1]);
}
+
+void wxMutexGuiEnter()
+{
+ gs_mutexGui->Lock();
+}
+
+void wxMutexGuiLeave()
+{
+ gs_mutexGui->Unlock();
+}