Revision: 11986
Author: [email protected]
Date: Thu Jul 5 01:07:01 2012
Log: Larger stack trace string in the minidump when catching
Debug::Break crash.
[email protected]
BUG=
TEST=
Review URL: https://chromiumcodereview.appspot.com/10698103
http://code.google.com/p/v8/source/detail?r=11986
Modified:
/branches/bleeding_edge/src/debug.cc
=======================================
--- /branches/bleeding_edge/src/debug.cc Fri Jun 29 08:11:16 2012
+++ /branches/bleeding_edge/src/debug.cc Thu Jul 5 01:07:01 2012
@@ -1027,8 +1027,8 @@
} 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_,
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev