Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 9227bd38 authored by Colin Cross's avatar Colin Cross
Browse files

Move liblog headers to system/core/include/log

Move the liblog headers to log/ instead of cutils/ to complete
the separation of libcutils and liblog.  cutils/log.h still
exists and includes log/log.h in order to support the many existing
modules that use cutils/log.h.

Change-Id: I2758c9f4aedcb809ca7ba8383d0f55041dd44345
parent 87bc464a
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -130,7 +130,7 @@ LOCAL_FORCE_STATIC_EXECUTABLE := true
LOCAL_MODULE_PATH := $(TARGET_ROOT_OUT_SBIN)
LOCAL_MODULE_PATH := $(TARGET_ROOT_OUT_SBIN)
LOCAL_UNSTRIPPED_PATH := $(TARGET_ROOT_OUT_SBIN_UNSTRIPPED)
LOCAL_UNSTRIPPED_PATH := $(TARGET_ROOT_OUT_SBIN_UNSTRIPPED)


LOCAL_STATIC_LIBRARIES := libcutils libc libmincrypt
LOCAL_STATIC_LIBRARIES := liblog libcutils libc libmincrypt
include $(BUILD_EXECUTABLE)
include $(BUILD_EXECUTABLE)




+1 −1
Original line number Original line Diff line number Diff line
@@ -22,7 +22,7 @@
#include <fcntl.h>
#include <fcntl.h>
#include <errno.h>
#include <errno.h>
#include <sys/socket.h>
#include <sys/socket.h>
#include <cutils/logger.h>
#include <log/logger.h>
#include "sysdeps.h"
#include "sysdeps.h"
#include "adb.h"
#include "adb.h"


+3 −2
Original line number Original line Diff line number Diff line
@@ -31,9 +31,10 @@
#include <sys/stat.h>
#include <sys/stat.h>
#include <sys/poll.h>
#include <sys/poll.h>


#include <log/logd.h>
#include <log/logger.h>

#include <cutils/sockets.h>
#include <cutils/sockets.h>
#include <cutils/logd.h>
#include <cutils/logger.h>
#include <cutils/properties.h>
#include <cutils/properties.h>
#include <cutils/debugger.h>
#include <cutils/debugger.h>


+1 −1
Original line number Original line Diff line number Diff line
@@ -29,7 +29,7 @@


#include <private/android_filesystem_config.h>
#include <private/android_filesystem_config.h>


#include <cutils/logger.h>
#include <log/logger.h>
#include <cutils/properties.h>
#include <cutils/properties.h>


#include <corkscrew/demangle.h>
#include <corkscrew/demangle.h>
+1 −1
Original line number Original line Diff line number Diff line
@@ -22,7 +22,7 @@
#include <errno.h>
#include <errno.h>
#include <unistd.h>
#include <unistd.h>
#include <signal.h>
#include <signal.h>
#include <cutils/logd.h>
#include <log/logd.h>
#include <sys/ptrace.h>
#include <sys/ptrace.h>
#include <sys/wait.h>
#include <sys/wait.h>
#include <arpa/inet.h>
#include <arpa/inet.h>
Loading