Fixed some style bugs in the removal of __P(()). The main ones were

not removing tabs before "__P((", and not outdenting continuation lines
to preserve non-KNF lining up of code with parentheses.  Switch to KNF
formatting and/or rewrap the whole prototype in some cases.
This commit is contained in:
Bruce Evans 2002-03-24 05:09:11 +00:00
parent 69c59d8703
commit 70f52b4845
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=93076
6 changed files with 20 additions and 21 deletions

View file

@ -60,13 +60,13 @@ MALLOC_DEFINE(M_SESSION, "session", "session header");
static MALLOC_DEFINE(M_PROC, "proc", "Proc structures"); static MALLOC_DEFINE(M_PROC, "proc", "Proc structures");
MALLOC_DEFINE(M_SUBPROC, "subproc", "Proc sub-structures"); MALLOC_DEFINE(M_SUBPROC, "subproc", "Proc sub-structures");
static struct proc *dopfind (register pid_t); static struct proc *dopfind(register pid_t);
static void doenterpgrp (struct proc *, struct pgrp *); static void doenterpgrp(struct proc *, struct pgrp *);
static void pgdelete (struct pgrp *); static void pgdelete(struct pgrp *);
static void orphanpg (struct pgrp *pg); static void orphanpg(struct pgrp *pg);
/* /*
* Other process lists * Other process lists

View file

@ -74,16 +74,16 @@
#define ONSIG 32 /* NSIG for osig* syscalls. XXX. */ #define ONSIG 32 /* NSIG for osig* syscalls. XXX. */
static int coredump (struct thread *); static int coredump(struct thread *);
static int do_sigaction(struct proc *p, int sig, struct sigaction *act, static int do_sigaction(struct proc *p, int sig, struct sigaction *act,
struct sigaction *oact, int old); struct sigaction *oact, int old);
static int do_sigprocmask(struct proc *p, int how, sigset_t *set, static int do_sigprocmask(struct proc *p, int how, sigset_t *set,
sigset_t *oset, int old); sigset_t *oset, int old);
static char *expand_name(const char *, uid_t, pid_t); static char *expand_name(const char *, uid_t, pid_t);
static int killpg1 (struct proc *cp, int sig, int pgid, int all); static int killpg1(struct proc *cp, int sig, int pgid, int all);
static int sig_ffs (sigset_t *set); static int sig_ffs(sigset_t *set);
static int sigprop (int sig); static int sigprop(int sig);
static void stop (struct proc *); static void stop(struct proc *);
static int filt_sigattach(struct knote *kn); static int filt_sigattach(struct knote *kn);
static void filt_sigdetach(struct knote *kn); static void filt_sigdetach(struct knote *kn);

View file

@ -48,10 +48,10 @@
#include <sys/kernel.h> #include <sys/kernel.h>
#include <sys/sysctl.h> #include <sys/sysctl.h>
static int ttcompatgetflags (struct tty *tp); static int ttcompatgetflags(struct tty *tp);
static void ttcompatsetflags (struct tty *tp, struct termios *t); static void ttcompatsetflags(struct tty *tp, struct termios *t);
static void ttcompatsetlflags (struct tty *tp, struct termios *t); static void ttcompatsetlflags(struct tty *tp, struct termios *t);
static int ttcompatspeedtab (int speed, struct speedtab *table); static int ttcompatspeedtab(int speed, struct speedtab *table);
static int ttydebug = 0; static int ttydebug = 0;
SYSCTL_INT(_debug, OID_AUTO, ttydebug, CTLFLAG_RW, &ttydebug, 0, ""); SYSCTL_INT(_debug, OID_AUTO, ttydebug, CTLFLAG_RW, &ttydebug, 0, "");

View file

@ -79,13 +79,13 @@ static void sf_buf_free(caddr_t addr, void *args);
static int sendit(struct thread *td, int s, struct msghdr *mp, int flags); static int sendit(struct thread *td, int s, struct msghdr *mp, int flags);
static int recvit(struct thread *td, int s, struct msghdr *mp, static int recvit(struct thread *td, int s, struct msghdr *mp,
caddr_t namelenp); caddr_t namelenp);
static int accept1(struct thread *td, struct accept_args *uap, int compat); static int accept1(struct thread *td, struct accept_args *uap, int compat);
static int getsockname1(struct thread *td, struct getsockname_args *uap, static int getsockname1(struct thread *td, struct getsockname_args *uap,
int compat); int compat);
static int getpeername1(struct thread *td, struct getpeername_args *uap, static int getpeername1(struct thread *td, struct getpeername_args *uap,
int compat); int compat);
/* /*
* Expanded sf_freelist head. Really an SLIST_HEAD() in disguise, with the * Expanded sf_freelist head. Really an SLIST_HEAD() in disguise, with the

View file

@ -82,8 +82,7 @@ static ino_t unp_ino; /* prototype for fake inode numbers */
static int unp_attach(struct socket *); static int unp_attach(struct socket *);
static void unp_detach(struct unpcb *); static void unp_detach(struct unpcb *);
static int unp_bind(struct unpcb *,struct sockaddr *, struct thread *); static int unp_bind(struct unpcb *,struct sockaddr *, struct thread *);
static int unp_connect(struct socket *,struct sockaddr *, static int unp_connect(struct socket *,struct sockaddr *, struct thread *);
struct thread *);
static void unp_disconnect(struct unpcb *); static void unp_disconnect(struct unpcb *);
static void unp_shutdown(struct unpcb *); static void unp_shutdown(struct unpcb *);
static void unp_drop(struct unpcb *, int); static void unp_drop(struct unpcb *, int);

View file

@ -56,7 +56,7 @@ static MALLOC_DEFINE(M_NETADDR, "Export Host", "Export host address structure");
static void vfs_free_addrlist(struct netexport *nep); static void vfs_free_addrlist(struct netexport *nep);
static int vfs_free_netcred(struct radix_node *rn, void *w); static int vfs_free_netcred(struct radix_node *rn, void *w);
static int vfs_hang_addrlist(struct mount *mp, struct netexport *nep, static int vfs_hang_addrlist(struct mount *mp, struct netexport *nep,
struct export_args *argp); struct export_args *argp);
/* /*
* Network address lookup element * Network address lookup element