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

Side by Side Diff: src/platform-nullos.cc

Issue 11577019: V8_Fatal now prints C++ stack trace in debug mode. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Addressed comments Created 8 years 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/platform-macos.cc ('k') | src/platform-openbsd.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after
270 // Minimalistic implementation for bootstrapping. 270 // Minimalistic implementation for bootstrapping.
271 abort(); 271 abort();
272 } 272 }
273 273
274 274
275 void OS::DebugBreak() { 275 void OS::DebugBreak() {
276 UNIMPLEMENTED(); 276 UNIMPLEMENTED();
277 } 277 }
278 278
279 279
280 void OS::DumpBacktrace() {
281 // Currently unsupported.
282 }
283
284
280 OS::MemoryMappedFile* OS::MemoryMappedFile::open(const char* name) { 285 OS::MemoryMappedFile* OS::MemoryMappedFile::open(const char* name) {
281 UNIMPLEMENTED(); 286 UNIMPLEMENTED();
282 return NULL; 287 return NULL;
283 } 288 }
284 289
285 290
286 OS::MemoryMappedFile* OS::MemoryMappedFile::create(const char* name, int size, 291 OS::MemoryMappedFile* OS::MemoryMappedFile::create(const char* name, int size,
287 void* initial) { 292 void* initial) {
288 UNIMPLEMENTED(); 293 UNIMPLEMENTED();
289 return NULL; 294 return NULL;
(...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after
508 UNIMPLEMENTED(); 513 UNIMPLEMENTED();
509 } 514 }
510 515
511 516
512 void ProfileSampler::Stop() { 517 void ProfileSampler::Stop() {
513 UNIMPLEMENTED(); 518 UNIMPLEMENTED();
514 } 519 }
515 520
516 521
517 } } // namespace v8::internal 522 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/platform-macos.cc ('k') | src/platform-openbsd.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698