Bug 127251

Summary: Convert LoaderRunLoopCF.cpp and WebCoreThreadRun.cpp over to modern threading primitives
Product: WebKit Reporter: Anders Carlsson <andersca>
Component: New BugsAssignee: Anders Carlsson <andersca>
Status: RESOLVED FIXED    
Severity: Normal    
Priority: P2    
Version: 528+ (Nightly build)   
Hardware: Unspecified   
OS: Unspecified   
Attachments:
Description Flags
Patch koivisto: review+

Description Anders Carlsson 2014-01-19 10:27:54 PST
Convert LoaderRunLoopCF.cpp and WebCoreThreadRun.cpp over to modern threading primitives
Comment 1 Anders Carlsson 2014-01-19 10:30:06 PST
Created attachment 221588 [details]
Patch
Comment 2 Antti Koivisto 2014-01-19 10:35:58 PST
Comment on attachment 221588 [details]
Patch

View in context: https://bugs.webkit.org/attachment.cgi?id=221588&action=review

> Source/WebCore/platform/ios/wak/WebCoreThreadRun.cpp:116
> +static std::mutex* runQueueMutex = nullptr;
> +static CFRunLoopSourceRef runSource = nullptr;
> +static WebThreadRunQueue* runQueue = nullptr;
>  

Don't need to initialise globals to null.
Comment 3 Anders Carlsson 2014-01-19 10:37:41 PST
Committed r162292: <http://trac.webkit.org/changeset/162292>