TO RESET: send SIGSTOP instead of SIGV in PF

Change-Id: I5f7e07cb89f5f38b7c631d838f0eee0a2a98e246
This commit is contained in:
Balazs Gerofi
2020-12-21 09:48:16 +09:00
committed by Masamichi Takagi
parent b3b1883ad8
commit fd5a1c4b0a

View File

@ -1478,9 +1478,9 @@ out_linux:
preempt_enable();
#ifdef ENABLE_FUGAKU_DEBUG
//kprintf("%s: sending SIGSTOP to TID: %d\n", __func__, thread->tid);
//do_kill(thread, thread->proc->pid, thread->tid, SIGSTOP, NULL, 0);
//goto out;
kprintf("%s: sending SIGSTOP to TID: %d\n", __func__, thread->tid);
do_kill(thread, thread->proc->pid, thread->tid, SIGSTOP, NULL, 0);
goto out;
#endif
memset(&info, '\0', sizeof info);