From 3583d5e407476b8836228c0abc52c400d74aba61 Mon Sep 17 00:00:00 2001 From: Garrett D'Amore Date: Wed, 14 Dec 2016 18:53:10 -0800 Subject: More robust platform definition support. The idea is that someday it will be possible to just concatenate the entire set of source files into a single giant source file, for systems that want to work this way. As a result, the build system now compiles every file, although some of them will not have any definitions. --- src/core/panic.c | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) (limited to 'src/core/panic.c') diff --git a/src/core/panic.c b/src/core/panic.c index 52dcb8c8..43c25beb 100644 --- a/src/core/panic.c +++ b/src/core/panic.c @@ -50,7 +50,7 @@ show_backtrace(void) return; } for (i = 1; i < nframes; i++) { - nni_debug_out(lines[i]); + nni_println(lines[i]); } } #endif @@ -75,10 +75,17 @@ nni_panic(const char *fmt, ...) (void) nni_vsnprintf(buf, sizeof (buf), fbuf, va); va_end(va); - nni_debug_out(buf); - nni_debug_out("This message is indicative of a BUG."); - nni_debug_out("Report this at http://github.com/nanomsg/nanomsg"); + nni_println(buf); + nni_println("This message is indicative of a BUG."); + nni_println("Report this at http://github.com/nanomsg/nanomsg"); show_backtrace(); - nni_abort(); + nni_plat_abort(); +} + +void +nni_println(const char *msg) +{ + /* TODO: support redirection of this later. */ + nni_plat_println(msg); } -- cgit v1.2.3-70-g09d2