Ignore:
Timestamp:
Dec 7, 2015, 10:30:53 AM (10 years ago)
Author:
[email protected]
Message:

Rename Watchdog::didFire to Watchdog::shouldTerminate because that's what didFire really meant
https://bugs.webkit.org/show_bug.cgi?id=151944

Reviewed by Mark Lam.

  • interpreter/Interpreter.cpp:

(JSC::Interpreter::execute):

  • runtime/VMInlines.h:

(JSC::VM::shouldTriggerTermination):

  • runtime/Watchdog.cpp:

(JSC::Watchdog::terminateSoon):
(JSC::Watchdog::shouldTerminateSlow):
(JSC::Watchdog::didFireSlow): Deleted.

  • runtime/Watchdog.h:

(JSC::Watchdog::shouldTerminate):
(JSC::Watchdog::didFire): Deleted.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/interpreter/Interpreter.cpp

    r193606 r193636  
    13051305    ModuleProgramCodeBlock* codeBlock = executable->codeBlock();
    13061306
    1307     if (UNLIKELY(vm.watchdog && vm.watchdog->didFire(callFrame)))
     1307    if (UNLIKELY(vm.shouldTriggerTermination(callFrame)))
    13081308        return throwTerminatedExecutionException(callFrame);
    13091309
Note: See TracChangeset for help on using the changeset viewer.