[Webkit-unassigned] [Bug 55728] [fileapi] Worker File API calls that create Blobs fail in debug builds due to random number generator thread assertion

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Wed Apr 27 11:10:32 PDT 2011


https://bugs.webkit.org/show_bug.cgi?id=55728





--- Comment #17 from Adam Klein <adamk at chromium.org>  2011-04-27 11:10:31 PST ---
wtf/FastMall(In reply to comment #16)
> (In reply to comment #15)
> > Fixing this is not trivial (though probably not hard for a seasoned Windows coder). The build problem was due to some code that depends on pthread_once: I suspect the easiest fix will be to replace that with some Windows equivalent.
> 
> Can you provide a pointer of the file/class/method that is causing the the problem?

Source/JavaScriptCore/wtf/FastMalloc.cpp:110

#if ENABLE(WTF_MULTIPLE_THREADS)
static pthread_key_t isForbiddenKey;
static pthread_once_t isForbiddenKeyOnce = PTHREAD_ONCE_INIT;
static void initializeIsForbiddenKey()
{
  pthread_key_create(&isForbiddenKey, 0);
}
...

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



More information about the webkit-unassigned mailing list