From ceeacf4650a98cf5cd42f9eac26c8ed4efaa530d Mon Sep 17 00:00:00 2001 From: stesen Date: Mon, 28 Mar 2022 23:27:06 +0800 Subject: [PATCH] fixed 0d4979d from https://gitee.com/faithwang/developtools_hdc_standard/pulls/317 fixed c15f471 from https://gitee.com/faithwang/developtools_hdc_standard/pulls/315 delete uv_read_stop in none-uv thread Signed-off-by: stesen Change-Id: I0a2c077c22ca672b6c3305dfb8299fd3a5c7634e --- src/daemon/jdwp.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/daemon/jdwp.cpp b/src/daemon/jdwp.cpp index fe6a2e3c..e0ea197e 100644 --- a/src/daemon/jdwp.cpp +++ b/src/daemon/jdwp.cpp @@ -518,7 +518,6 @@ void *HdcJdwp::FdEventPollThread(void *args) HCtxJdwp ctx = static_cast(thisClass->AdminContext(OP_QUERY, targetPID, nullptr)); if (ctx != nullptr) { WRITE_LOG(LOG_INFO, "FreeContext for targetPID :%d", targetPID); - uv_read_stop((uv_stream_t *)&ctx->pipe); thisClass->FreeContext(ctx); } thisClass->freeContextMutex.unlock(); -- Gitee