WebKit Bugzilla
Attachment 339204 Details for
Bug 185140
: WebProcess fails to launch
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
Patch
bug-185140-20180501103731.patch (text/plain), 1.68 KB, created by
Per Arne Vollan
on 2018-05-01 10:37:32 PDT
(
hide
)
Description:
Patch
Filename:
MIME Type:
Creator:
Per Arne Vollan
Created:
2018-05-01 10:37:32 PDT
Size:
1.68 KB
patch
obsolete
>Index: Source/WebKit/ChangeLog >=================================================================== >--- Source/WebKit/ChangeLog (revision 231201) >+++ Source/WebKit/ChangeLog (working copy) >@@ -1,3 +1,14 @@ >+2018-05-01 Per Arne Vollan <pvollan@apple.com> >+ >+ Use correct runloop type in the WebContent process. >+ https://bugs.webkit.org/show_bug.cgi?id=185140 >+ >+ Reviewed by NOBODY (OOPS!). >+ >+ Use WK_MACOS_* machinery to determine runloop type for the WebContent process. >+ >+ * Configurations/WebContentService.xcconfig: >+ > 2018-05-01 Oleksandr Skachkov <gskachkov@gmail.com> > > WebAssembly: add support for stream APIs - JavaScript API >Index: Source/WebKit/Configurations/WebContentService.xcconfig >=================================================================== >--- Source/WebKit/Configurations/WebContentService.xcconfig (revision 231200) >+++ Source/WebKit/Configurations/WebContentService.xcconfig (working copy) >@@ -60,9 +60,6 @@ WK_WEBCONTENT_SERVICE_NEEDS_VERSIONED_FR > WK_WEBCONTENT_SERVICE_NEEDS_VERSIONED_FRAMEWORK_PATH_LDFLAG_NO = $(WK_WEBCONTENT_SERVICE_NEEDS_VERSIONED_FRAMEWORK_PATH_LDFLAG); > WK_WEBCONTENT_SERVICE_NEEDS_VERSIONED_FRAMEWORK_PATH_LDFLAG_YES = $(USE_STAGING_INSTALL_PATH); > >-RUNLOOP_TYPE = $(RUNLOOP_TYPE_$(PLATFORM_NAME)_$(TARGET_MAC_OS_X_VERSION_MAJOR)); >-RUNLOOP_TYPE_macosx_101100 = _NSApplicationMain; >-RUNLOOP_TYPE_macosx_101200 = _NSApplicationMain; >-RUNLOOP_TYPE_macosx_101300 = _NSApplicationMain; >-RUNLOOP_TYPE_macosx_101400 = NSRunLoop; >-RUNLOOP_TYPE_macosx_101500 = NSRunLoop; >+RUNLOOP_TYPE = $(RUNLOOP_TYPE$(WK_MACOS_1014)); >+RUNLOOP_TYPE_MACOS_BEFORE_1014 = _NSApplicationMain; >+RUNLOOP_TYPE_MACOS_SINCE_1014 = NSRunLoop;
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Formatted Diff
|
Diff
Attachments on
bug 185140
:
339133
|
339204
|
339213
|
340727