summaryrefslogtreecommitdiffstats
path: root/include/android
diff options
context:
space:
mode:
authorMark Salyzyn <salyzyn@google.com>2016-08-23 10:23:36 -0700
committerMark Salyzyn <salyzyn@google.com>2016-08-23 15:25:03 -0700
commitdf7a4c6bae5f85532d79a93b7d9197a2aab17825 (patch)
tree13f001b7c317ec5725a7985d6c27143712465bf6 /include/android
parentad52cbb9ec16ecee443c72286845e0f3a336e350 (diff)
downloadsystem_core-df7a4c6bae5f85532d79a93b7d9197a2aab17825.tar.gz
system_core-df7a4c6bae5f85532d79a93b7d9197a2aab17825.tar.bz2
system_core-df7a4c6bae5f85532d79a93b7d9197a2aab17825.zip
liblog: add __android_log_close()
Bug: 30963384 Change-Id: I901e6ac2cc3c601bbecc2d64e00a98e2ab448210
Diffstat (limited to 'include/android')
-rw-r--r--include/android/log.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/android/log.h b/include/android/log.h
index 2956e6e76..a4973b272 100644
--- a/include/android/log.h
+++ b/include/android/log.h
@@ -89,6 +89,11 @@ typedef enum android_LogPriority {
} android_LogPriority;
/*
+ * Release any logger resources (a new log write will immediately re-acquire)
+ */
+void __android_log_close();
+
+/*
* Send a simple string to the log.
*/
int __android_log_write(int prio, const char *tag, const char *text);