diff options
author | bde <bde@FreeBSD.org> | 1999-01-02 11:34:57 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1999-01-02 11:34:57 +0000 |
commit | 734d13314e6e9f235abcba66a420f81b29606173 (patch) | |
tree | a59d3d6af3585db9166b59563c58b540faccaa4d /sys/fs/cd9660/cd9660_node.c | |
parent | 60b0c6afef485cb129b9755b9ca0fc373c700689 (diff) | |
download | FreeBSD-src-734d13314e6e9f235abcba66a420f81b29606173.zip FreeBSD-src-734d13314e6e9f235abcba66a420f81b29606173.tar.gz |
Ifdefed conditionally used simplock variables.
Diffstat (limited to 'sys/fs/cd9660/cd9660_node.c')
-rw-r--r-- | sys/fs/cd9660/cd9660_node.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/fs/cd9660/cd9660_node.c b/sys/fs/cd9660/cd9660_node.c index a7a971b..edfd66c 100644 --- a/sys/fs/cd9660/cd9660_node.c +++ b/sys/fs/cd9660/cd9660_node.c @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)cd9660_node.c 8.2 (Berkeley) 1/23/94 - * $Id: cd9660_node.c,v 1.24 1998/02/06 12:13:20 eivind Exp $ + * $Id: cd9660_node.c,v 1.25 1998/02/09 06:09:18 eivind Exp $ */ #include <sys/param.h> @@ -58,7 +58,9 @@ static struct iso_node **isohashtbl; static u_long isohash; #define INOHASH(device, inum) (((device) + ((inum)>>12)) & isohash) +#ifndef NULL_SIMPLELOCKS static struct simplelock cd9660_ihash_slock; +#endif static void cd9660_ihashrem __P((struct iso_node *)); static unsigned cd9660_chars2ui __P((unsigned char *begin, int len)); |