diff options
Diffstat (limited to 'deps/v8/src/execution.h')
-rw-r--r-- | deps/v8/src/execution.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/deps/v8/src/execution.h b/deps/v8/src/execution.h index a2ddc41a15..af8ad9aff3 100644 --- a/deps/v8/src/execution.h +++ b/deps/v8/src/execution.h @@ -38,7 +38,8 @@ enum InterruptFlag { DEBUGBREAK = 1 << 1, DEBUGCOMMAND = 1 << 2, PREEMPT = 1 << 3, - TERMINATE = 1 << 4 + TERMINATE = 1 << 4, + RUNTIME_PROFILER_TICK = 1 << 5 }; class Execution : public AllStatic { @@ -175,6 +176,8 @@ class StackGuard : public AllStatic { static void Interrupt(); static bool IsTerminateExecution(); static void TerminateExecution(); + static bool IsRuntimeProfilerTick(); + static void RequestRuntimeProfilerTick(); #ifdef ENABLE_DEBUGGER_SUPPORT static bool IsDebugBreak(); static void DebugBreak(); |