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

Unified Diff: src/debug.cc

Issue 10698103: Larger stack trace string in the minidump when catching Debug::Break crash. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years, 5 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/debug.cc
diff --git a/src/debug.cc b/src/debug.cc
index 1f5164f6ac3dc496b205494695bac3bb8b4fd330..777e23dac81a476d16ea77fbb4558be98ae98d43 100644
--- a/src/debug.cc
+++ b/src/debug.cc
@@ -1027,8 +1027,8 @@ Object* Debug::Break(Arguments args) {
} else if (it.frame()->fp() != thread_local_.last_fp_) {
// We crawled over last_fp_, without getting a match.
Handle<String> stack = isolate_->StackTraceString();
- char buffer[2048];
- String::WriteToFlat(*stack, buffer, 0, 2047);
+ char buffer[8192];
+ String::WriteToFlat(*stack, buffer, 0, 8191);
PutValuesOnStackAndDie(0xDEEEEEEE,
frame->fp(),
thread_local_.last_fp_,
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698