aboutsummaryrefslogtreecommitdiffstats
path: root/libc/private/libc_logging.h
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2013-04-04 13:46:46 -0700
committerElliott Hughes <enh@google.com>2013-04-05 11:24:19 -0700
commit0d787c1fa18c6a1f29ef9840e28a68cf077be1de (patch)
tree3f8efc05d80658c9be48513238104a5de01a9951 /libc/private/libc_logging.h
parent014c75c78bdcad8acde8d0abb2450aa1f78e1a1f (diff)
downloadandroid_bionic-0d787c1fa18c6a1f29ef9840e28a68cf077be1de.tar.gz
android_bionic-0d787c1fa18c6a1f29ef9840e28a68cf077be1de.tar.bz2
android_bionic-0d787c1fa18c6a1f29ef9840e28a68cf077be1de.zip
Make abort messages available to debuggerd.
This adds __libc_fatal, cleans up the internal logging code a bit more, and switches suitable callers over to __libc_fatal. In addition to logging, __libc_fatal stashes the message somewhere that the debuggerd signal handler can find it before calling abort. In the debuggerd signal handler, we pass this address to debuggerd so that it can come back with ptrace to read the message and present it to the user. Bug: 8531731 Change-Id: I416ec1da38a8a1b0d0a582ccd7c8aaa681ed4a29
Diffstat (limited to 'libc/private/libc_logging.h')
-rw-r--r--libc/private/libc_logging.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/libc/private/libc_logging.h b/libc/private/libc_logging.h
index 4c9dc2190..281bad3ab 100644
--- a/libc/private/libc_logging.h
+++ b/libc/private/libc_logging.h
@@ -67,6 +67,20 @@ enum {
ANDROID_LOG_SILENT, /* only for SetMinPriority(); must be last */
};
+struct abort_msg_t {
+ size_t size;
+ char msg[0];
+};
+
+__LIBC_HIDDEN__ void __libc_set_abort_message(const char* msg);
+
+//
+// Formats a message to the log (priority 'fatal'), then aborts.
+//
+
+__LIBC_HIDDEN__ __noreturn void __libc_fatal(const char* format, ...)
+ __attribute__((__format__(printf, 1, 2)));
+
//
// Formatting routines for the C library's internal debugging.
// Unlike the usual alternatives, these don't allocate.