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_lockf.c | |
| parent | 89fb8ee796263407b2396378b7076c0350b9e5cc (diff) | |
Notes
Diffstat (limited to 'sys/kern/kern_lockf.c')
| -rw-r--r-- | sys/kern/kern_lockf.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/sys/kern/kern_lockf.c b/sys/kern/kern_lockf.c index 4ec87a0dd435..5e47a0ccfa6e 100644 --- a/sys/kern/kern_lockf.c +++ b/sys/kern/kern_lockf.c @@ -76,15 +76,15 @@ MALLOC_DEFINE(M_LOCKF, "lockf", "Byte-range locking structures"); #define NOLOCKF (struct lockf *)0 #define SELF 0x1 #define OTHERS 0x2 -static int lf_clearlock __P((struct lockf *)); -static int lf_findoverlap __P((struct lockf *, - struct lockf *, int, struct lockf ***, struct lockf **)); +static int lf_clearlock(struct lockf *); +static int lf_findoverlap(struct lockf *, + struct lockf *, int, struct lockf ***, struct lockf **); static struct lockf * - lf_getblock __P((struct lockf *)); -static int lf_getlock __P((struct lockf *, struct flock *)); -static int lf_setlock __P((struct lockf *)); -static void lf_split __P((struct lockf *, struct lockf *)); -static void lf_wakelock __P((struct lockf *)); + lf_getblock(struct lockf *); +static int lf_getlock(struct lockf *, struct flock *); +static int lf_setlock(struct lockf *); +static void lf_split(struct lockf *, struct lockf *); +static void lf_wakelock(struct lockf *); /* * Advisory record locking support |
