summaryrefslogtreecommitdiff
path: root/libs/binder/ProcessState.cpp
diff options
context:
space:
mode:
author Steven Moreland <smoreland@google.com> 2019-04-02 22:31:51 -0700
committer android-build-merger <android-build-merger@google.com> 2019-04-02 22:31:51 -0700
commit5fcbe6f6bce23518cd8ca4448c0d2098a1da2ee7 (patch)
tree106fc059d06af3810d4faec9faf8631e8fe5c828 /libs/binder/ProcessState.cpp
parentb13d74b89bf2145fabd2a728ba28e951d6cdfb52 (diff)
parentb7350658a584317b8ff4830b0e86c814674a4e4f (diff)
Merge "Remove binder_node_debug_info definition." am: 7392a5c646
am: b7350658a5 Change-Id: I90e83abcdf8bc4b0d0d7f8c3ed98850b3c144d8c
Diffstat (limited to 'libs/binder/ProcessState.cpp')
-rw-r--r--libs/binder/ProcessState.cpp9
1 files changed, 0 insertions, 9 deletions
diff --git a/libs/binder/ProcessState.cpp b/libs/binder/ProcessState.cpp
index 3798b61ab9..1c74e7b077 100644
--- a/libs/binder/ProcessState.cpp
+++ b/libs/binder/ProcessState.cpp
@@ -202,15 +202,6 @@ bool ProcessState::becomeContextManager(context_check_func checkFunc, void* user
// already be invalid.
ssize_t ProcessState::getKernelReferences(size_t buf_count, uintptr_t* buf)
{
- // TODO: remove these when they are defined by bionic's binder.h
- struct binder_node_debug_info {
- binder_uintptr_t ptr;
- binder_uintptr_t cookie;
- __u32 has_strong_ref;
- __u32 has_weak_ref;
- };
-#define BINDER_GET_NODE_DEBUG_INFO _IOWR('b', 11, struct binder_node_debug_info)
-
binder_node_debug_info info = {};
uintptr_t* end = buf ? buf + buf_count : nullptr;