kern_sig.c: ANSIfy and remove archaic register keyword

Sponsored by:	The FreeBSD Foundation
This commit is contained in:
Ed Maste 2017-03-02 22:17:53 +00:00
parent ed085b68ab
commit e052a8b932
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=314568

View File

@ -822,12 +822,10 @@ struct sigaction_args {
};
#endif
int
sys_sigaction(td, uap)
struct thread *td;
register struct sigaction_args *uap;
sys_sigaction(struct thread *td, struct sigaction_args *uap)
{
struct sigaction act, oact;
register struct sigaction *actp, *oactp;
struct sigaction *actp, *oactp;
int error;
actp = (uap->act != NULL) ? &act : NULL;
@ -852,12 +850,10 @@ struct freebsd4_sigaction_args {
};
#endif
int
freebsd4_sigaction(td, uap)
struct thread *td;
register struct freebsd4_sigaction_args *uap;
freebsd4_sigaction(struct thread *td, struct freebsd4_sigaction_args *uap)
{
struct sigaction act, oact;
register struct sigaction *actp, *oactp;
struct sigaction *actp, *oactp;
int error;
@ -884,13 +880,11 @@ struct osigaction_args {
};
#endif
int
osigaction(td, uap)
struct thread *td;
register struct osigaction_args *uap;
osigaction(struct thread *td, struct osigaction_args *uap)
{
struct osigaction sa;
struct sigaction nsa, osa;
register struct sigaction *nsap, *osap;
struct sigaction *nsap, *osap;
int error;
if (uap->signum <= 0 || uap->signum >= ONSIG)
@ -920,9 +914,7 @@ osigaction(td, uap)
#if !defined(__i386__)
/* Avoid replicating the same stub everywhere */
int
osigreturn(td, uap)
struct thread *td;
struct osigreturn_args *uap;
osigreturn(struct thread *td, struct osigreturn_args *uap)
{
return (nosys(td, (struct nosys_args *)uap));
@ -935,8 +927,7 @@ osigreturn(td, uap)
* set to ignore signals that are ignored by default.
*/
void
siginit(p)
struct proc *p;
siginit(struct proc *p)
{
register int i;
struct sigacts *ps;
@ -1109,9 +1100,7 @@ struct sigprocmask_args {
};
#endif
int
sys_sigprocmask(td, uap)
register struct thread *td;
struct sigprocmask_args *uap;
sys_sigprocmask(struct thread *td, struct sigprocmask_args *uap)
{
sigset_t set, oset;
sigset_t *setp, *osetp;
@ -1139,9 +1128,7 @@ struct osigprocmask_args {
};
#endif
int
osigprocmask(td, uap)
register struct thread *td;
struct osigprocmask_args *uap;
osigprocmask(struct thread *td, struct osigprocmask_args *uap)
{
sigset_t set, oset;
int error;
@ -1359,9 +1346,7 @@ struct sigpending_args {
};
#endif
int
sys_sigpending(td, uap)
struct thread *td;
struct sigpending_args *uap;
sys_sigpending(struct thread *td, struct sigpending_args *uap)
{
struct proc *p = td->td_proc;
sigset_t pending;
@ -1380,9 +1365,7 @@ struct osigpending_args {
};
#endif
int
osigpending(td, uap)
struct thread *td;
struct osigpending_args *uap;
osigpending(struct thread *td, struct osigpending_args *uap)
{
struct proc *p = td->td_proc;
sigset_t pending;
@ -1409,13 +1392,11 @@ struct osigvec_args {
#endif
/* ARGSUSED */
int
osigvec(td, uap)
struct thread *td;
register struct osigvec_args *uap;
osigvec(struct thread *td, struct osigvec_args *uap)
{
struct sigvec vec;
struct sigaction nsa, osa;
register struct sigaction *nsap, *osap;
struct sigaction *nsap, *osap;
int error;
if (uap->signum <= 0 || uap->signum >= ONSIG)
@ -1449,9 +1430,7 @@ struct osigblock_args {
};
#endif
int
osigblock(td, uap)
register struct thread *td;
struct osigblock_args *uap;
osigblock(struct thread *td, struct osigblock_args *uap)
{
sigset_t set, oset;
@ -1467,9 +1446,7 @@ struct osigsetmask_args {
};
#endif
int
osigsetmask(td, uap)
struct thread *td;
struct osigsetmask_args *uap;
osigsetmask(struct thread *td, struct osigsetmask_args *uap)
{
sigset_t set, oset;
@ -1491,9 +1468,7 @@ struct sigsuspend_args {
#endif
/* ARGSUSED */
int
sys_sigsuspend(td, uap)
struct thread *td;
struct sigsuspend_args *uap;
sys_sigsuspend(struct thread *td, struct sigsuspend_args *uap)
{
sigset_t mask;
int error;
@ -1559,9 +1534,7 @@ struct osigsuspend_args {
#endif
/* ARGSUSED */
int
osigsuspend(td, uap)
struct thread *td;
struct osigsuspend_args *uap;
osigsuspend(struct thread *td, struct osigsuspend_args *uap)
{
sigset_t mask;
@ -1579,9 +1552,7 @@ struct osigstack_args {
#endif
/* ARGSUSED */
int
osigstack(td, uap)
struct thread *td;
register struct osigstack_args *uap;
osigstack(struct thread *td, struct osigstack_args *uap)
{
struct sigstack nss, oss;
int error = 0;
@ -1614,9 +1585,7 @@ struct sigaltstack_args {
#endif
/* ARGSUSED */
int
sys_sigaltstack(td, uap)
struct thread *td;
register struct sigaltstack_args *uap;
sys_sigaltstack(struct thread *td, struct sigaltstack_args *uap)
{
stack_t ss, oss;
int error;
@ -1799,9 +1768,7 @@ sys_kill(struct thread *td, struct kill_args *uap)
}
int
sys_pdkill(td, uap)
struct thread *td;
struct pdkill_args *uap;
sys_pdkill(struct thread *td, struct pdkill_args *uap)
{
struct proc *p;
cap_rights_t rights;
@ -2986,7 +2953,7 @@ postsig(sig)
register int sig;
{
struct thread *td = curthread;
register struct proc *p = td->td_proc;
struct proc *p = td->td_proc;
struct sigacts *ps;
sig_t action;
ksiginfo_t ksi;
@ -3059,9 +3026,7 @@ postsig(sig)
* Kill the current process for stated reason.
*/
void
killproc(p, why)
struct proc *p;
char *why;
killproc(struct proc *p, char *why)
{
PROC_LOCK_ASSERT(p, MA_OWNED);
@ -3082,9 +3047,7 @@ killproc(p, why)
* does not return.
*/
void
sigexit(td, sig)
struct thread *td;
int sig;
sigexit(struct thread *td, int sig)
{
struct proc *p = td->td_proc;
@ -3573,9 +3536,7 @@ struct nosys_args {
#endif
/* ARGSUSED */
int
nosys(td, args)
struct thread *td;
struct nosys_args *args;
nosys(struct thread *td, struct nosys_args *args)
{
struct proc *p = td->td_proc;
@ -3590,9 +3551,7 @@ nosys(td, args)
* credentials rather than those of the current process.
*/
void
pgsigio(sigiop, sig, checkctty)
struct sigio **sigiop;
int sig, checkctty;
pgsigio(struct sigio **sigiop, int sig, int checkctty)
{
ksiginfo_t ksi;
struct sigio *sigio;