diff options
author | dyson <dyson@FreeBSD.org> | 1997-12-11 02:10:55 +0000 |
---|---|---|
committer | dyson <dyson@FreeBSD.org> | 1997-12-11 02:10:55 +0000 |
commit | 043ed4f1ba6194c3842d5880197eab2380e3e2bd (patch) | |
tree | 0c94be39ddc40b36c1bf45be5c1fac8623f57f8c /sys | |
parent | 2208ac1acff642528ab86ad928de033b2ebec1ab (diff) | |
download | FreeBSD-src-043ed4f1ba6194c3842d5880197eab2380e3e2bd.zip FreeBSD-src-043ed4f1ba6194c3842d5880197eab2380e3e2bd.tar.gz |
Fix the prototype for swapout_procs();
Submitted by: dima@best.net
Diffstat (limited to 'sys')
-rw-r--r-- | sys/vm/vm_glue.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/vm/vm_glue.c b/sys/vm/vm_glue.c index 9bf0294..9654d6f 100644 --- a/sys/vm/vm_glue.c +++ b/sys/vm/vm_glue.c @@ -59,7 +59,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: vm_glue.c,v 1.67 1997/11/07 08:53:42 phk Exp $ + * $Id: vm_glue.c,v 1.68 1997/12/06 02:23:30 dyson Exp $ */ #include "opt_rlimit.h" @@ -398,7 +398,8 @@ SYSCTL_INT(_vm, OID_AUTO, swap_idle_threshold2, * if any, otherwise the longest-resident process. */ void -swapout_procs(int action) +swapout_procs(action) +int action; { register struct proc *p; struct proc *outp, *outp2; |