Diff reduction in comments for filling the siginfo structure - refer to

filling in the POSIX parts, when doing the same thing in every port of
FreeBSD.
This commit is contained in:
Juli Mallett 2002-09-07 18:56:18 +00:00
parent d367157e25
commit 9d05b77d4f
3 changed files with 3 additions and 3 deletions

View File

@ -307,7 +307,7 @@ linux_rt_sendsig(sig_t catcher, int sig, sigset_t *mask, u_long code)
frame.sf_siginfo = &fp->sf_si;
frame.sf_ucontext = &fp->sf_sc;
/* Fill siginfo structure. */
/* Fill in POSIX parts */
frame.sf_si.lsi_signo = sig;
frame.sf_si.lsi_code = code;
frame.sf_si.lsi_addr = (void *)regs->tf_err;

View File

@ -488,7 +488,7 @@ sendsig(catcher, sig, mask, code)
sf.sf_siginfo = (register_t)&sfp->sf_si;
sf.sf_ahu.sf_action = (__siginfohandler_t *)catcher;
/* Fill siginfo structure. */
/* Fill in POSIX parts */
sf.sf_si.si_signo = sig;
sf.sf_si.si_code = code;
sf.sf_si.si_addr = (void *)regs->tf_err;

View File

@ -488,7 +488,7 @@ sendsig(catcher, sig, mask, code)
sf.sf_siginfo = (register_t)&sfp->sf_si;
sf.sf_ahu.sf_action = (__siginfohandler_t *)catcher;
/* Fill siginfo structure. */
/* Fill in POSIX parts */
sf.sf_si.si_signo = sig;
sf.sf_si.si_code = code;
sf.sf_si.si_addr = (void *)regs->tf_err;