Commit dee15487 authored by yangguo@chromium.org's avatar yangguo@chromium.org

Larger stack trace string in the minidump when catching Debug::Break crash.

R=jkummerow@chromium.org
BUG=
TEST=

Review URL: https://chromiumcodereview.appspot.com/10698103

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@11986 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent 3766f21c
......@@ -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_,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment