From a5028c73e19f9b5d3b39ce7da2a77b79b1ba70c2 Mon Sep 17 00:00:00 2001 From: whoisJohn Date: Thu, 23 Mar 2023 15:42:23 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E8=BF=9B=E7=A8=8B=E5=88=9B?= =?UTF-8?q?=E5=BB=BA=E5=90=8E=E9=80=9A=E7=9F=A5hidumper=E6=A8=A1=E5=9D=97?= =?UTF-8?q?=E6=9B=B4=E6=96=B0cpu=E7=BB=9F=E8=AE=A1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: whoisJohn --- common/appspawn_server.c | 1 + 1 file changed, 1 insertion(+) diff --git a/common/appspawn_server.c b/common/appspawn_server.c index baa22dab..7bb64138 100644 --- a/common/appspawn_server.c +++ b/common/appspawn_server.c @@ -170,6 +170,7 @@ pid_t AppSpawnFork(int (*childFunc)(void *arg), void *args) pid_t pid = fork(); if (pid == 0) { ProcessSafeExit(childFunc(args)); + APPSPAWN_LOGI("AppSpawnFork notify hidumper update cpu"); return -1; } return pid; -- Gitee