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

Commit ad0614b8 authored by Elliott Hughes's avatar Elliott Hughes Committed by Gerrit Code Review
Browse files

Merge "Fix logd's implicit dependency on libsysutils."

parents 73bfaa27 0fe3b670
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -25,7 +25,6 @@
#include <android-base/thread_annotations.h>
#include <android/log.h>
#include <private/android_filesystem_config.h>
#include <sysutils/SocketClient.h>

#include "LogBuffer.h"
#include "LogBufferElement.h"
+0 −2
Original line number Diff line number Diff line
@@ -22,8 +22,6 @@
#include "LogReaderList.h"
#include "LogReaderThread.h"

#define LOGD_SNDTIMEO 32

class LogReader : public SocketListener {
  public:
    explicit LogReader(LogBuffer* logbuf, LogReaderList* reader_list);
+0 −1
Original line number Diff line number Diff line
@@ -27,7 +27,6 @@
#include <memory>

#include <log/log.h>
#include <sysutils/SocketClient.h>

#include "LogBuffer.h"
#include "LogWriter.h"
+1 −0
Original line number Diff line number Diff line
@@ -24,6 +24,7 @@
#include <sys/mman.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <sys/uio.h>
#include <unistd.h>

#include <string>
+2 −1
Original line number Diff line number Diff line
@@ -20,12 +20,13 @@
#include <sys/types.h>

#include <private/android_logger.h>
#include <sysutils/SocketClient.h>
#include <utils/FastStrcmp.h>

// Hijack this header as a common include file used by most all sources
// to report some utilities defined here and there.

#define LOGD_SNDTIMEO 32

namespace android {

// Furnished in main.cpp. Caller must own and free returned value
Loading