aboutsummaryrefslogtreecommitdiff
path: root/deps/v8/src/execution.h
diff options
context:
space:
mode:
authorBen Noordhuis <info@bnoordhuis.nl>2013-02-25 22:45:23 +0100
committerBen Noordhuis <info@bnoordhuis.nl>2013-02-25 23:45:02 +0100
commitb15a10e7a014674ef6f71c51ad84032fb7b802e2 (patch)
tree3bb04a6cb05c7a37c385eda4521b8a9e7bcd736f /deps/v8/src/execution.h
parent34046084c0665c8bb2dfd84683dcf29d7ffbad2d (diff)
downloadandroid-node-v8-b15a10e7a014674ef6f71c51ad84032fb7b802e2.tar.gz
android-node-v8-b15a10e7a014674ef6f71c51ad84032fb7b802e2.tar.bz2
android-node-v8-b15a10e7a014674ef6f71c51ad84032fb7b802e2.zip
deps: downgrade v8 to 3.14.5
V8 3.15 and newer have stability and performance issues. Roll back to a known-good version.
Diffstat (limited to 'deps/v8/src/execution.h')
-rw-r--r--deps/v8/src/execution.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/deps/v8/src/execution.h b/deps/v8/src/execution.h
index 448b8d68ac..9f5d9ff2cd 100644
--- a/deps/v8/src/execution.h
+++ b/deps/v8/src/execution.h
@@ -41,8 +41,9 @@ enum InterruptFlag {
DEBUGCOMMAND = 1 << 2,
PREEMPT = 1 << 3,
TERMINATE = 1 << 4,
- GC_REQUEST = 1 << 5,
- CODE_READY = 1 << 6
+ RUNTIME_PROFILER_TICK = 1 << 5,
+ GC_REQUEST = 1 << 6,
+ CODE_READY = 1 << 7
};
@@ -193,6 +194,8 @@ class StackGuard {
void Interrupt();
bool IsTerminateExecution();
void TerminateExecution();
+ bool IsRuntimeProfilerTick();
+ void RequestRuntimeProfilerTick();
bool IsCodeReadyEvent();
void RequestCodeReadyEvent();
#ifdef ENABLE_DEBUGGER_SUPPORT