diff options
| author | Alfred Perlstein <alfred@FreeBSD.org> | 2002-03-19 21:25:46 +0000 |
|---|---|---|
| committer | Alfred Perlstein <alfred@FreeBSD.org> | 2002-03-19 21:25:46 +0000 |
| commit | 4d77a549fed13746cc4edf84e511b385c1754f3d (patch) | |
| tree | 7ea68f3b5c452a55df6c05b903dae3ac1e8f71f9 /sys/kern/kern_resource.c | |
| parent | 89fb8ee796263407b2396378b7076c0350b9e5cc (diff) | |
Notes
Diffstat (limited to 'sys/kern/kern_resource.c')
| -rw-r--r-- | sys/kern/kern_resource.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/kern_resource.c b/sys/kern/kern_resource.c index 8f585a41b3aa..fbd76c217138 100644 --- a/sys/kern/kern_resource.c +++ b/sys/kern/kern_resource.c @@ -59,7 +59,7 @@ #include <vm/pmap.h> #include <vm/vm_map.h> -static int donice __P((struct proc *curp, struct proc *chgp, int n)); +static int donice(struct proc *curp, struct proc *chgp, int n); static MALLOC_DEFINE(M_UIDINFO, "uidinfo", "uidinfo structures"); #define UIHASH(uid) (&uihashtbl[(uid) & uihash]) @@ -67,7 +67,7 @@ static struct mtx uihashtbl_mtx; static LIST_HEAD(uihashhead, uidinfo) *uihashtbl; static u_long uihash; /* size of hash table - 1 */ -static struct uidinfo *uilookup __P((uid_t uid)); +static struct uidinfo *uilookup(uid_t uid); /* * Resource controls and accounting. |
