diff options
author | Mark Newton <newton@FreeBSD.org> | 1999-01-30 06:25:00 +0000 |
---|---|---|
committer | Mark Newton <newton@FreeBSD.org> | 1999-01-30 06:25:00 +0000 |
commit | 69a6f20bc88f1f0476ad10b6673b642848461e1e (patch) | |
tree | a253f3f05d90682d251d8478fb1f71a741e72ed0 /sys/kern/kern_resource.c | |
parent | d81380b49db34f5298aa120cf48a8ed030ceef51 (diff) |
Notes
Diffstat (limited to 'sys/kern/kern_resource.c')
-rw-r--r-- | sys/kern/kern_resource.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/kern/kern_resource.c b/sys/kern/kern_resource.c index 1bad1d2f0471..d7591a15e141 100644 --- a/sys/kern/kern_resource.c +++ b/sys/kern/kern_resource.c @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)kern_resource.c 8.5 (Berkeley) 1/21/94 - * $Id: kern_resource.c,v 1.37 1998/05/28 09:30:18 phk Exp $ + * $Id: kern_resource.c,v 1.38 1998/07/27 19:16:21 bde Exp $ */ #include "opt_compat.h" @@ -59,7 +59,7 @@ #include <vm/vm_map.h> static int donice __P((struct proc *curp, struct proc *chgp, int n)); -static int dosetrlimit __P((struct proc *p, u_int which, struct rlimit *limp)); +int dosetrlimit __P((struct proc *p, u_int which, struct rlimit *limp)); /* * Resource controls and accounting. @@ -363,7 +363,7 @@ setrlimit(p, uap) return (dosetrlimit(p, uap->which, &alim)); } -static int +int dosetrlimit(p, which, limp) struct proc *p; u_int which; |