Merge pull request #1 from knocte/do_not_report_gtk_init_itself

do not report yet violations if guithread is not set yet
This commit is contained in:
Lluis Sanchez 2012-09-21 23:48:21 -07:00
commit cf9c865ecc

View File

@ -63,6 +63,9 @@ simple_method_enter (MonoProfiler *prof, MonoMethod *method)
guithread = current_thread_id;
printf ("*** GUI THREAD INITIALIZED: %u\n", guithread);
}
if (!guithread_set) {
return;
}
if (current_thread_id != guithread &&
!(strcmp (klass_name, "Object")==0 && strcmp (method_name, "Dispose")==0) &&
!(strcmp (klass_name, "Application")==0 && strcmp (method_name, "Invoke")==0) &&