From 4e905cd4124f1aaf757cd4ff40240dec733a2299 Mon Sep 17 00:00:00 2001 From: Masamichi Takagi Date: Tue, 4 Sep 2018 10:34:19 +0900 Subject: [PATCH] uti: do_syscall: Don't warn when proxy is gone This is because this is a normal case since terminate() is changed so that it first kills all mcexec threads and then kill McKernel threads. Change-Id: I88380bf28b60645d361baded525d71105235c16f --- kernel/syscall.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel/syscall.c b/kernel/syscall.c index ab1d7c71..e0d4a966 100644 --- a/kernel/syscall.c +++ b/kernel/syscall.c @@ -483,7 +483,7 @@ long do_syscall(struct syscall_request *req, int cpu, int pid) /* -ERESTARTSYS indicates that the proxy process is gone * and the application should be terminated */ if (rc == -ERESTARTSYS) { - kprintf("%s: proxy PID %d is dead, terminate()\n", + dkprintf("%s: proxy PID %d is dead, terminate()\n", __FUNCTION__, thread->proc->pid); thread->proc->nohost = 1; }