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

Commit d63ed9d2 authored by Steven Moreland's avatar Steven Moreland
Browse files

libbinder: stop exporting kernel headers

Bug: 124524556
Test: build only
Change-Id: Iab9cf62dc413c728e2cf0bccb909377a03760e25
parent 0bc23613
Loading
Loading
Loading
Loading
+8 −2
Original line number Diff line number Diff line
@@ -21,8 +21,6 @@
#include <string>
#include <vector>

#include <linux/android/binder.h>

#include <android-base/unique_fd.h>
#include <cutils/native_handle.h>
#include <utils/Errors.h>
@@ -34,11 +32,19 @@
#include <binder/IInterface.h>
#include <binder/Parcelable.h>

#ifdef BINDER_IPC_32BIT
typedef __u32 binder_size_t;
#else
typedef __u64 binder_size_t;
#endif


// ---------------------------------------------------------------------------
namespace android {

template <typename T> class Flattenable;
template <typename T> class LightFlattenable;
struct flat_binder_object;
class IBinder;
class IPCThreadState;
class ProcessState;
+1 −0
Original line number Diff line number Diff line
@@ -28,6 +28,7 @@
#include <binder/IPCThreadState.h>
#include <binder/IServiceManager.h>

#include <private/binder/binder_module.h>
#include <sys/epoll.h>

#define ARRAY_SIZE(array) (sizeof array / sizeof array[0])