Changeset 293979 in webkit


Ignore:
Timestamp:
May 9, 2022 9:52:10 AM (2 years ago)
Author:
pvollan@apple.com
Message:

Create reports for long process launch times
https://bugs.webkit.org/show_bug.cgi?id=240127

Unreviewed, fix typo.

  • UIProcess/AuxiliaryProcessProxy.cpp:

(WebKit::AuxiliaryProcessProxy::connect):
(WebKit::AuxiliaryProcessProxy::didFinishLaunching):

  • UIProcess/AuxiliaryProcessProxy.h:
Location:
trunk/Source/WebKit
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r293977 r293979  
     12022-05-09  Per Arne Vollan  <pvollan@apple.com>
     2
     3        Create reports for long process launch times
     4        https://bugs.webkit.org/show_bug.cgi?id=240127
     5
     6        Unreviewed, fix typo.
     7
     8        * UIProcess/AuxiliaryProcessProxy.cpp:
     9        (WebKit::AuxiliaryProcessProxy::connect):
     10        (WebKit::AuxiliaryProcessProxy::didFinishLaunching):
     11        * UIProcess/AuxiliaryProcessProxy.h:
     12
    1132022-05-09  Kate Cheney  <katherine_cheney@apple.com>
    214
  • trunk/Source/WebKit/UIProcess/AuxiliaryProcessProxy.cpp

    r293893 r293979  
    109109{
    110110    ASSERT(!m_processLauncher);
    111     m_proccessStart = MonotonicTime::now();
     111    m_processStart = MonotonicTime::now();
    112112    ProcessLauncher::LaunchOptions launchOptions;
    113113    getLaunchOptions(launchOptions);
     
    259259    ASSERT(isMainRunLoop());
    260260
    261     auto launchTime = MonotonicTime::now() - m_proccessStart;
     261    auto launchTime = MonotonicTime::now() - m_processStart;
    262262    if (launchTime > 1_s)
    263263        RELEASE_LOG_FAULT(Process, "%s process (%p) took %f seconds to launch", processName().characters(), this, launchTime.value());
  • trunk/Source/WebKit/UIProcess/AuxiliaryProcessProxy.h

    r293893 r293979  
    188188    WebCore::ProcessIdentifier m_processIdentifier { WebCore::ProcessIdentifier::generate() };
    189189    std::optional<UseLazyStop> m_delayedResponsivenessCheck;
    190     MonotonicTime m_proccessStart;
     190    MonotonicTime m_processStart;
    191191};
    192192
Note: See TracChangeset for help on using the changeset viewer.