summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSergio Martins <sergio.martins.qnx@kdab.com>2013-04-15 13:57:40 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-04-17 18:10:45 +0200
commitb43f23fe0d0ab5776180090be728977ffcb638fc (patch)
treeb51d1bbd96910675672dbb33bb406d25cd06282d
parenta76e66539e6a8b7294ed43142bda72da93953347 (diff)
[V8] V8_Fatal now prints C++ stack trace in debug mode.
This applies upstream 86cb01c6ab196e786013526bccd1bb163e485c33 to platform-qnx. The upstream commit only implemented it for Linux, but we need the stub to fix the build. Change-Id: I2a6916058b651c8df74bd7279e8b1d64c083f065 Reviewed-by: Sean Harmer <sean.harmer@kdab.com> Reviewed-by: Nicolas Arnaud-Cormos <nicolas@kdab.com> Reviewed-by: Peter Varga <pvarga@inf.u-szeged.hu>
-rw-r--r--src/3rdparty/v8/src/platform-qnx.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/3rdparty/v8/src/platform-qnx.cc b/src/3rdparty/v8/src/platform-qnx.cc
index f7c73fc..9f73104 100644
--- a/src/3rdparty/v8/src/platform-qnx.cc
+++ b/src/3rdparty/v8/src/platform-qnx.cc
@@ -1032,6 +1032,9 @@ SignalSender* SignalSender::instance_ = NULL;
struct sigaction SignalSender::old_signal_handler_;
bool SignalSender::signal_handler_installed_ = false;
+void OS::DumpBacktrace() {
+ // Currently unsupported.
+}
void OS::SetUp() {
// Seed the random number generator. We preserve microsecond resolution.