Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(211)

Unified Diff: src/execution.cc

Issue 1321543004: [futex] Allow debugger to break in the middle of a futexWait Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: pass parameter through HandleInterrupts Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/execution.cc
diff --git a/src/execution.cc b/src/execution.cc
index 4ab2403e56f0a0cc9d9345e51e0a233a260ff21c..6f9635d481a85cfd4d14d946e213877e9bfae02c 100644
--- a/src/execution.cc
+++ b/src/execution.cc
@@ -646,13 +646,13 @@ void StackGuard::HandleGCInterrupt() {
}
-Object* StackGuard::HandleInterrupts() {
+Object* StackGuard::HandleInterrupts(BreakInNonDebuggableFlag flag) {
if (CheckAndClearInterrupt(GC_REQUEST)) {
isolate_->heap()->HandleGCRequest();
}
if (CheckDebugBreak() || CheckDebugCommand()) {
- isolate_->debug()->HandleDebugBreak();
+ isolate_->debug()->HandleDebugBreak(flag);
}
if (CheckAndClearInterrupt(TERMINATE_EXECUTION)) {
« src/execution.h ('K') | « src/execution.h ('k') | src/futex-emulation.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698