summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Prabir Pradhan <prabirmsp@google.com> 2023-09-11 16:28:11 +0000
committer Prabir Pradhan <prabirmsp@google.com> 2023-09-14 16:20:49 +0000
commit17966fdecf78412a001bf0ea14c47b72cbf616b2 (patch)
tree56447e35aeb3bf927d4335b4ae0d341fab438cd8
parent3821b0df36c612755b711d8d5a7b63377d7cf5d9 (diff)
Remove additional trace added to InputChannel::receiveMessage
Bug: 297462790 Bug: 300465155 Test: None Change-Id: Ib20cf76fba4360d998d650445baa8b2e494b63a9
-rw-r--r--libs/input/InputTransport.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/libs/input/InputTransport.cpp b/libs/input/InputTransport.cpp
index 1f1439608b..16000139f7 100644
--- a/libs/input/InputTransport.cpp
+++ b/libs/input/InputTransport.cpp
@@ -476,8 +476,6 @@ status_t InputChannel::sendMessage(const InputMessage* msg) {
}
status_t InputChannel::receiveMessage(InputMessage* msg) {
- ATRACE_NAME_IF(ATRACE_ENABLED(),
- StringPrintf("receiveMessage(inputChannel=%s)", mName.c_str()));
ssize_t nRead;
do {
nRead = ::recv(getFd(), msg, sizeof(InputMessage), MSG_DONTWAIT);