diff options
author | Mark Salyzyn <salyzyn@google.com> | 2014-03-14 17:49:41 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2014-03-14 17:49:42 +0000 |
commit | fc204a966f953867367f54bda126a2e7d7d98814 (patch) | |
tree | ca35789ca24deeeece188403230b0bf632cb61f3 /include/log/logger.h | |
parent | 6ab10a1c17d048e88f929d35293d266b6480f6d6 (diff) | |
parent | 95cfc7b8e2e6e5c6cdc97989563e49208915a583 (diff) | |
download | system_core-fc204a966f953867367f54bda126a2e7d7d98814.zip system_core-fc204a966f953867367f54bda126a2e7d7d98814.tar.gz system_core-fc204a966f953867367f54bda126a2e7d7d98814.tar.bz2 |
Merge changes Ia9509ad0,I4e815d74,I10e8d92c
* changes:
logcat: test White Black list
logd: Find log time for arbitrary time to tail
logd: liblog: logcat: Arbitrary time to tail
Diffstat (limited to 'include/log/logger.h')
-rw-r--r-- | include/log/logger.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/log/logger.h b/include/log/logger.h index 8dab234..3c6ea30 100644 --- a/include/log/logger.h +++ b/include/log/logger.h @@ -12,6 +12,7 @@ #include <stdint.h> #include <log/log.h> +#include <log/log_read.h> #ifdef __cplusplus extern "C" { @@ -161,6 +162,9 @@ int android_logger_set_prune_list(struct logger_list *logger_list, struct logger_list *android_logger_list_alloc(int mode, unsigned int tail, pid_t pid); +struct logger_list *android_logger_list_alloc_time(int mode, + log_time start, + pid_t pid); void android_logger_list_free(struct logger_list *logger_list); /* In the purest sense, the following two are orthogonal interfaces */ int android_logger_list_read(struct logger_list *logger_list, |