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
This commit is contained in:
Masamichi Takagi
2018-09-04 10:34:19 +09:00
parent 8c11daf726
commit 4e905cd412

View File

@ -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;
}