RESOLVED FIXED 141559
WorkQueue should support concurrent queues
https://bugs.webkit.org/show_bug.cgi?id=141559
Summary WorkQueue should support concurrent queues
Antti Koivisto
Reported 2015-02-13 03:57:34 PST
Currently it only does serial.
Attachments
patch (16.45 KB, patch)
2015-02-13 04:41 PST, Antti Koivisto
no flags
iOS build fix (17.25 KB, patch)
2015-02-13 05:26 PST, Antti Koivisto
buildbot: commit-queue-
Archive of layout-test-results from ews107 for mac-mavericks-wk2 (683.25 KB, application/zip)
2015-02-13 06:22 PST, Build Bot
no flags
without the qos change (15.93 KB, patch)
2015-02-13 09:12 PST, Antti Koivisto
andersca: review+
Antti Koivisto
Comment 1 2015-02-13 04:41:19 PST
Antti Koivisto
Comment 2 2015-02-13 05:26:53 PST
Created attachment 246518 [details] iOS build fix
Build Bot
Comment 3 2015-02-13 06:22:40 PST
Comment on attachment 246518 [details] iOS build fix Attachment 246518 [details] did not pass mac-wk2-ews (mac-wk2): Output: http://webkit-queues.appspot.com/results/6659487410683904 New failing tests: fast/frames/frame-limit.html
Build Bot
Comment 4 2015-02-13 06:22:43 PST
Created attachment 246521 [details] Archive of layout-test-results from ews107 for mac-mavericks-wk2 The attached test failures were seen while running run-webkit-tests on the mac-wk2-ews. Bot: ews107 Port: mac-mavericks-wk2 Platform: Mac OS X 10.9.5
Antti Koivisto
Comment 5 2015-02-13 09:12:56 PST
Created attachment 246528 [details] without the qos change
Anders Carlsson
Comment 6 2015-02-13 09:27:36 PST
Comment on attachment 246528 [details] without the qos change View in context: https://bugs.webkit.org/attachment.cgi?id=246528&action=review > Source/WebKit2/UIProcess/Launcher/ProcessLauncher.cpp:38 > + static NeverDestroyed<Ref<WorkQueue>> processLauncherWorkQueue { WorkQueue::create("com.apple.WebKit.ProcessLauncher") }; No need to use NeverDestroyed with a smart pointer type.
Antti Koivisto
Comment 7 2015-02-13 09:51:38 PST
Sam Weinig
Comment 8 2015-02-13 12:01:25 PST
Comment on attachment 246528 [details] without the qos change View in context: https://bugs.webkit.org/attachment.cgi?id=246528&action=review > Source/WebKit2/Shared/mac/SecItemShim.cpp:181 > + connection->addWorkQueueMessageReceiver(Messages::SecItemShim::messageReceiverName(), &m_queue.get(), this); You can do m_queue.ptr() here. > Source/WebKit2/WebProcess/Plugins/PluginProcessConnectionManager.cpp:61 > + connection->addWorkQueueMessageReceiver(Messages::PluginProcessConnectionManager::messageReceiverName(), &m_queue.get(), this); &m_queue.get() -> m_queue.ptr() > Source/WebKit2/WebProcess/WebPage/EventDispatcher.cpp:90 > + connection->addWorkQueueMessageReceiver(Messages::EventDispatcher::messageReceiverName(), &m_queue.get(), this); &m_queue.get() -> m_queue.ptr() > Source/WebKit2/WebProcess/WebPage/ViewUpdateDispatcher.cpp:55 > + connection->addWorkQueueMessageReceiver(Messages::ViewUpdateDispatcher::messageReceiverName(), &m_queue.get(), this); &m_queue.get() -> m_queue.ptr()
Note You need to log in before you can comment on or make changes to this bug.