diff options
author | Mark Salyzyn <salyzyn@google.com> | 2016-03-01 13:45:42 -0800 |
---|---|---|
committer | Dan Willemsen <dwillemsen@google.com> | 2016-03-22 13:01:15 -0700 |
commit | 018a96d03f0d452bf078084eedcd5693da42308d (patch) | |
tree | 28a998736c3637944985ccacb20539527e19d3e5 /liblog/log_is_loggable.c | |
parent | 80b1b188281b0c89e94cd9c3c3f2b04f007d6b28 (diff) | |
download | core-018a96d03f0d452bf078084eedcd5693da42308d.tar.gz core-018a96d03f0d452bf078084eedcd5693da42308d.tar.bz2 core-018a96d03f0d452bf078084eedcd5693da42308d.zip |
liblog: split out transports into separate files
Create config_logger, logger and logger_read to house the log
interfaces. Add fake_logger, logd_logger and pmsg_logger to
house the write and read transports. Allows for an easier and
direct path to add new transports to the library.
SideEffects: None, logger benchmark performance unaffected
Bug: 27176738
Bug: 27405083
Change-Id: I01b38637334a5242905c8c89f6ab0a92e2540008
Diffstat (limited to 'liblog/log_is_loggable.c')
-rw-r--r-- | liblog/log_is_loggable.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/liblog/log_is_loggable.c b/liblog/log_is_loggable.c index 47fde204e..551fa7684 100644 --- a/liblog/log_is_loggable.c +++ b/liblog/log_is_loggable.c @@ -23,7 +23,7 @@ #include <android/log.h> -#include "log_cdefs.h" +#include "log_portability.h" static pthread_mutex_t lock_loggable = PTHREAD_MUTEX_INITIALIZER; |