diff options
| author | 2019-04-02 18:58:57 -0700 | |
|---|---|---|
| committer | 2019-04-02 19:00:22 -0700 | |
| commit | 9b8bb4ca0b1b04ab5f511e567529403d471ea325 (patch) | |
| tree | 097d6dc6858605eb51951da39e3f4667b3429aa3 /libs/binder/ProcessState.cpp | |
| parent | a9ed1a6486545ffc5bffca561d6f8991e7d5a578 (diff) | |
Remove binder_node_debug_info definition.
Bug: 129785390
Test: build only (is in kernel headers)
Change-Id: Iadeda477277b4f26b53a651abb6049c3cdc08bd7
Diffstat (limited to 'libs/binder/ProcessState.cpp')
| -rw-r--r-- | libs/binder/ProcessState.cpp | 9 |
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; |