[Webkit-unassigned] [Bug 15686] GtkLauncher aborts on launch due to uninitialized threading subsystem

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu Oct 25 09:17:58 PDT 2007


http://bugs.webkit.org/show_bug.cgi?id=15686





------- Comment #4 from beidson at apple.com  2007-10-25 09:17 PDT -------
Actually, there's already an abstraction for this in WebCore.  Check out
threading.h - 

void initializeThreading();

It seems that GTK already hooked into that in r26864

initializeThreading() is called at any point a secondary thread might be kicked
off.  Currently this include the IconDatabase c'tor and the Database c'tor. 
GTK's impl in ThreadingGTK.cpp seems to do exactly what you say needs to be
done -
if (!g_thread_supported ()) g_thread_init (NULL);

So in other words, I'm surprised this isn't working already.


-- 
Configure bugmail: http://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.



More information about the webkit-unassigned mailing list