summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark Salyzyn2016-03-01 15:45:42 -0600
committerDan Willemsen2016-03-22 15:01:15 -0500
commit018a96d03f0d452bf078084eedcd5693da42308d (patch)
tree28a998736c3637944985ccacb20539527e19d3e5 /liblog/logprint.c
parent80b1b188281b0c89e94cd9c3c3f2b04f007d6b28 (diff)
downloadplatform-system-core-018a96d03f0d452bf078084eedcd5693da42308d.tar.gz
platform-system-core-018a96d03f0d452bf078084eedcd5693da42308d.tar.xz
platform-system-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/logprint.c')
-rw-r--r--liblog/logprint.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/liblog/logprint.c b/liblog/logprint.c
index 02df8ddd6..d7de8648b 100644
--- a/liblog/logprint.c
+++ b/liblog/logprint.c
@@ -34,7 +34,7 @@
34#include <log/logprint.h> 34#include <log/logprint.h>
35#include <private/android_filesystem_config.h> 35#include <private/android_filesystem_config.h>
36 36
37#include "log_cdefs.h" 37#include "log_portability.h"
38 38
39#define MS_PER_NSEC 1000000 39#define MS_PER_NSEC 1000000
40#define US_PER_NSEC 1000 40#define US_PER_NSEC 1000