diff options
| author | Greg Lehey <grog@FreeBSD.org> | 1999-04-10 08:09:27 +0000 |
|---|---|---|
| committer | Greg Lehey <grog@FreeBSD.org> | 1999-04-10 08:09:27 +0000 |
| commit | 385e19fcb67a137b3583484973f00f8e8178711c (patch) | |
| tree | 13d98a36420981122c99eb0b811fe744f6c2256d /sys | |
| parent | ec3a7296927f08056f1f3e47e2643efd84c1fb62 (diff) | |
Notes
Diffstat (limited to 'sys')
| -rw-r--r-- | sys/dev/vinum/vinumext.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sys/dev/vinum/vinumext.h b/sys/dev/vinum/vinumext.h index d937ae80a00fe..5fe5cd1cad561 100644 --- a/sys/dev/vinum/vinumext.h +++ b/sys/dev/vinum/vinumext.h @@ -152,6 +152,7 @@ void vinum_meminfo(caddr_t data); int vinum_mallocinfo(caddr_t data); int vinum_rqinfo(caddr_t data); void LongJmp(jmp_buf, int); +char *basename(char *); #else void longjmp(jmp_buf, int); /* the kernel doesn't define this */ #endif @@ -215,7 +216,11 @@ int tokenize(char *, char *[]); void resetstats(struct vinum_ioctl_msg *msg); /* Locking */ +#ifdef VINUMDEBUG +int lockdrive(struct drive *drive, char *, int); +#else int lockdrive(struct drive *drive); +#endif void unlockdrive(struct drive *drive); int lockvol(struct volume *vol); void unlockvol(struct volume *vol); |
