Unbreak world, IN_SHLOCK/IN_EXLOCK haven't existed in a while and

Kirk finally has ditched them.  While I'm here also ditch FSHLOCK.
This commit is contained in:
Alfred Perlstein 2001-05-09 03:38:02 +00:00
parent 3f514cfc4c
commit b56b39ad4d
2 changed files with 0 additions and 18 deletions

View File

@ -91,10 +91,6 @@ open for reading
open for writing
.It A
open for appending
.It S
shared lock present
.It X
exclusive lock present
.It I
signal pgrp when data ready
.El
@ -330,10 +326,6 @@ modification time most be corrected
contains modifications
.It R
has a rename in progress
.It S
shared lock applied
.It E
exclusive lock applied
.It H
inode is on hash list
.It L

View File

@ -491,10 +491,6 @@ ufs_print(vp)
*flags++ = 'M';
if (flag & IN_RENAME)
*flags++ = 'R';
if (flag & IN_SHLOCK)
*flags++ = 'S';
if (flag & IN_EXLOCK)
*flags++ = 'E';
if (flag & IN_HASHED)
*flags++ = 'H';
if (flag & IN_LAZYMOD)
@ -940,12 +936,6 @@ filemode()
*fbp++ = 'W';
if (fp->f_flag & FAPPEND)
*fbp++ = 'A';
#ifdef FSHLOCK /* currently gone */
if (fp->f_flag & FSHLOCK)
*fbp++ = 'S';
if (fp->f_flag & FEXLOCK)
*fbp++ = 'X';
#endif
if (fp->f_flag & FASYNC)
*fbp++ = 'I';
*fbp = '\0';