diff options
author | 2024-12-12 17:55:17 +0000 | |
---|---|---|
committer | 2024-12-12 18:02:42 +0000 | |
commit | aee4e9d7b750d88b048ae74e371e2859a788fdc6 (patch) | |
tree | 389ae57819815f26cc826a40cd015791cc5f2c63 | |
parent | a92a88f6f481a904ede9a7a7685c028427aa8a79 (diff) |
Use local copy of vm_sockets.h on non-Trusty for portability
This uses binder's copy of the vm_sockets.h header for the definition of
vsock types and constants. This header is more portable as it works on
non-bionic based Linux systems and non-Linux systems that use compatible
types and constants.
Change-Id: I95171de08726754578ba00b4fb19524b9140afdb
-rw-r--r-- | libs/binder/libbinder_rpc_unstable.cpp | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/libs/binder/libbinder_rpc_unstable.cpp b/libs/binder/libbinder_rpc_unstable.cpp index a84a0c6e0b..64b1be25d2 100644 --- a/libs/binder/libbinder_rpc_unstable.cpp +++ b/libs/binder/libbinder_rpc_unstable.cpp @@ -23,11 +23,8 @@ #ifndef __TRUSTY__ #include <cutils/sockets.h> -#endif - -#ifdef __linux__ -#include <linux/vm_sockets.h> -#endif // __linux__ +#include "vm_sockets.h" +#endif // !__TRUSTY__ using android::OK; using android::RpcServer; |