mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-15 10:17:20 +00:00
MFi386: revision 206553
- Change printf() calls to uprintf() for sigreturn(). - Normalize the messages to include both pid and thread name.
This commit is contained in:
parent
ff605594dd
commit
9aac760c7d
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=207355
@ -874,7 +874,8 @@ freebsd4_sigreturn(td, uap)
|
||||
* one less debugger trap, so allowing it is fairly harmless.
|
||||
*/
|
||||
if (!EFL_SECURE(eflags & ~PSL_RF, regs->tf_eflags & ~PSL_RF)) {
|
||||
printf("freebsd4_sigreturn: eflags = 0x%x\n", eflags);
|
||||
uprintf("pid %d (%s): freebsd4_sigreturn eflags = 0x%x\n",
|
||||
td->td_proc->p_pid, td->td_name, eflags);
|
||||
return (EINVAL);
|
||||
}
|
||||
|
||||
@ -885,7 +886,8 @@ freebsd4_sigreturn(td, uap)
|
||||
*/
|
||||
cs = ucp->uc_mcontext.mc_cs;
|
||||
if (!CS_SECURE(cs)) {
|
||||
printf("freebsd4_sigreturn: cs = 0x%x\n", cs);
|
||||
uprintf("pid %d (%s): freebsd4_sigreturn cs = 0x%x\n",
|
||||
td->td_proc->p_pid, td->td_name, cs);
|
||||
ksiginfo_init_trap(&ksi);
|
||||
ksi.ksi_signo = SIGBUS;
|
||||
ksi.ksi_code = BUS_OBJERR;
|
||||
@ -986,7 +988,8 @@ sigreturn(td, uap)
|
||||
* one less debugger trap, so allowing it is fairly harmless.
|
||||
*/
|
||||
if (!EFL_SECURE(eflags & ~PSL_RF, regs->tf_eflags & ~PSL_RF)) {
|
||||
printf("sigreturn: eflags = 0x%x\n", eflags);
|
||||
uprintf("pid %d (%s): sigreturn eflags = 0x%x\n",
|
||||
td->td_proc->p_pid, td->td_name, eflags);
|
||||
return (EINVAL);
|
||||
}
|
||||
|
||||
@ -997,7 +1000,8 @@ sigreturn(td, uap)
|
||||
*/
|
||||
cs = ucp->uc_mcontext.mc_cs;
|
||||
if (!CS_SECURE(cs)) {
|
||||
printf("sigreturn: cs = 0x%x\n", cs);
|
||||
uprintf("pid %d (%s): sigreturn cs = 0x%x\n",
|
||||
td->td_proc->p_pid, td->td_name, cs);
|
||||
ksiginfo_init_trap(&ksi);
|
||||
ksi.ksi_signo = SIGBUS;
|
||||
ksi.ksi_code = BUS_OBJERR;
|
||||
|
Loading…
Reference in New Issue
Block a user