Merge "liblog: cleanup log_read.h header"

This commit is contained in:
Tom Cherry 2020-04-16 15:19:29 +00:00 committed by Gerrit Code Review
commit f0dafccb38
2 changed files with 8 additions and 20 deletions

View file

@ -16,22 +16,8 @@
#pragma once
#include <sys/types.h>
/* deal with possible sys/cdefs.h conflict with fcntl.h */
#ifdef __unused
#define __unused_defined __unused
#undef __unused
#endif
#include <fcntl.h> /* Pick up O_* macros */
/* restore definitions from above */
#ifdef __unused_defined
#define __unused __attribute__((__unused__))
#endif
#include <stdint.h>
#include <sys/types.h>
#include <log/log_id.h>
#include <log/log_time.h>
@ -40,6 +26,8 @@
extern "C" {
#endif
#define ANDROID_LOG_WRAP_DEFAULT_TIMEOUT 7200 /* 2 hour default */
/*
* Native log reading interface section. See logcat for sample code.
*
@ -114,13 +102,10 @@ ssize_t android_logger_get_prune_list(struct logger_list* logger_list,
char* buf, size_t len);
int android_logger_set_prune_list(struct logger_list* logger_list, const char* buf, size_t len);
#ifndef O_NONBLOCK
/* The below values are used for the `mode` argument of the below functions. */
/* Note that 0x00000003 were previously used and should be considered reserved. */
#define ANDROID_LOG_NONBLOCK 0x00000800
#else
#define ANDROID_LOG_NONBLOCK O_NONBLOCK
#endif
#define ANDROID_LOG_WRAP 0x40000000 /* Block until buffer about to wrap */
#define ANDROID_LOG_WRAP_DEFAULT_TIMEOUT 7200 /* 2 hour default */
#define ANDROID_LOG_PSTORE 0x80000000
struct logger_list* android_logger_list_alloc(int mode, unsigned int tail,

View file

@ -3,6 +3,9 @@
#ifndef _LIBS_LOG_LOG_H
#define _LIBS_LOG_LOG_H
/* Historically vendors have depended on this header being included. */
#include <fcntl.h>
#include <android/log.h>
#include <log/log_id.h>
#include <log/log_main.h>