summaryrefslogtreecommitdiff
path: root/libs/binder/IPCThreadState.cpp
diff options
context:
space:
mode:
author Li Li <dualli@google.com> 2021-09-16 22:43:19 +0000
committer Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> 2021-09-16 22:43:19 +0000
commit133b3bc5a2bb7dec195a571ce718410d3b45d800 (patch)
tree62a8cfa4cc1b49d2f366cbab7ee213cf0c3938fb /libs/binder/IPCThreadState.cpp
parent3605a85663c9d777a60d161fe9e5eef23a49d40a (diff)
parentbf90a44985f8ed9a41b6d65acd44886d1f43ef26 (diff)
Remove the redundant getProcessFreezeInfo() am: 4e678b9830 am: 631e2e1900 am: bf90a44985
Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/native/+/15842844 Change-Id: I27c191ef2723ddd61d389c073457f14b6d58213c
Diffstat (limited to 'libs/binder/IPCThreadState.cpp')
-rw-r--r--libs/binder/IPCThreadState.cpp18
1 files changed, 0 insertions, 18 deletions
diff --git a/libs/binder/IPCThreadState.cpp b/libs/binder/IPCThreadState.cpp
index 9e04ffeb11..55d3d70bd4 100644
--- a/libs/binder/IPCThreadState.cpp
+++ b/libs/binder/IPCThreadState.cpp
@@ -1410,23 +1410,6 @@ void IPCThreadState::threadDestructor(void *st)
}
}
-status_t IPCThreadState::getProcessFreezeInfo(pid_t pid, bool *sync_received, bool *async_received)
-{
- int ret = 0;
- binder_frozen_status_info info;
- info.pid = pid;
-
-#if defined(__ANDROID__)
- if (ioctl(self()->mProcess->mDriverFD, BINDER_GET_FROZEN_INFO, &info) < 0)
- ret = -errno;
-#endif
- *sync_received = info.sync_recv;
- *async_received = info.async_recv;
-
- return ret;
-}
-
-#ifndef __ANDROID_VNDK__
status_t IPCThreadState::getProcessFreezeInfo(pid_t pid, uint32_t *sync_received,
uint32_t *async_received)
{
@@ -1443,7 +1426,6 @@ status_t IPCThreadState::getProcessFreezeInfo(pid_t pid, uint32_t *sync_received
return ret;
}
-#endif
status_t IPCThreadState::freeze(pid_t pid, bool enable, uint32_t timeout_ms) {
struct binder_freeze_info info;