1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-17 10:26:15 +00:00

Add KTR tracing

This commit is contained in:
Kevin Lo 2007-02-14 04:41:28 +00:00
parent 897d31be9d
commit 65a92876a4
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=166697

View File

@ -183,6 +183,10 @@ sendsig(catcher, ksi, mask)
tf->tf_pc = (register_t)catcher;
tf->tf_usr_sp = (register_t)fp;
tf->tf_usr_lr = (register_t)(PS_STRINGS - *(p->p_sysent->sv_szsigcode));
CTR3(KTR_SIG, "sendsig: return td=%p pc=%#x sp=%#x", td, tf->tf_usr_lr,
tf->tf_usr_sp);
PROC_LOCK(p);
mtx_lock(&psp->ps_mtx);
}