Minor minadbd cleanup.
Distinguish our "services.cpp" more clearly from the regular adbd "services.cpp", and remove a few useless includes of "sysdeps.h". Change-Id: Ided4945a3ac5916133322ca7e95fa51add9abaa4
This commit is contained in:
parent
59f04b9982
commit
24eb8a0643
4 changed files with 3 additions and 8 deletions
|
@ -13,7 +13,7 @@ include $(CLEAR_VARS)
|
|||
LOCAL_SRC_FILES := \
|
||||
adb_main.cpp \
|
||||
fuse_adb_provider.cpp \
|
||||
services.cpp \
|
||||
minadbd_services.cpp \
|
||||
|
||||
LOCAL_CLANG := true
|
||||
LOCAL_MODULE := libminadbd
|
||||
|
|
|
@ -19,8 +19,6 @@
|
|||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "sysdeps.h"
|
||||
|
||||
#include "adb.h"
|
||||
#include "adb_auth.h"
|
||||
#include "transport.h"
|
||||
|
|
|
@ -19,8 +19,6 @@
|
|||
#include <string.h>
|
||||
#include <errno.h>
|
||||
|
||||
#include "sysdeps.h"
|
||||
|
||||
#include "adb.h"
|
||||
#include "adb_io.h"
|
||||
#include "fuse_adb_provider.h"
|
||||
|
|
|
@ -21,11 +21,10 @@
|
|||
#include <string.h>
|
||||
#include <unistd.h>
|
||||
|
||||
#include "sysdeps.h"
|
||||
|
||||
#include "adb.h"
|
||||
#include "fdevent.h"
|
||||
#include "fuse_adb_provider.h"
|
||||
#include "sysdeps.h"
|
||||
|
||||
typedef struct stinfo stinfo;
|
||||
|
||||
|
@ -62,7 +61,7 @@ static void sideload_host_service(int sfd, void* data) {
|
|||
|
||||
static int create_service_thread(void (*func)(int, void *), void *cookie) {
|
||||
int s[2];
|
||||
if(adb_socketpair(s)) {
|
||||
if (adb_socketpair(s)) {
|
||||
printf("cannot create service socket pair\n");
|
||||
return -1;
|
||||
}
|
Loading…
Reference in a new issue