You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
642 B
28 lines
642 B
/*Special log.h file for VNDK linking modules*/
|
|
|
|
#pragma once
|
|
|
|
/* Historically vendors have depended on these headers being included. */
|
|
#include <fcntl.h>
|
|
#include <pthread.h>
|
|
#include <unistd.h>
|
|
|
|
#include <android/log.h>
|
|
#include <log/log_id.h>
|
|
#include <log/log_main.h>
|
|
#include <log/log_radio.h>
|
|
#include <log/log_read.h>
|
|
#include <log/log_safetynet.h>
|
|
#include <log/log_system.h>
|
|
#include <log/log_time.h>
|
|
|
|
/*
|
|
* LOG_TAG is the local tag used for the following simplified
|
|
* logging macros. You can change this preprocessor definition
|
|
* before using the other macros to change the tag.
|
|
*/
|
|
|
|
#ifndef LOG_TAG
|
|
#define LOG_TAG NULL
|
|
#endif
|