diff options
author | alfred <alfred@FreeBSD.org> | 2001-05-09 03:38:02 +0000 |
---|---|---|
committer | alfred <alfred@FreeBSD.org> | 2001-05-09 03:38:02 +0000 |
commit | 5a64b2bb6b1a91b0dcaabc9c1a1ac8f254754d5c (patch) | |
tree | ab05100e8679a7e92d6754ed1f4a9b766d15cb76 /usr.sbin/pstat/pstat.c | |
parent | b890c3a8289161ac2aaf5737b0974d340862c6fc (diff) | |
download | FreeBSD-src-5a64b2bb6b1a91b0dcaabc9c1a1ac8f254754d5c.zip FreeBSD-src-5a64b2bb6b1a91b0dcaabc9c1a1ac8f254754d5c.tar.gz |
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.
Diffstat (limited to 'usr.sbin/pstat/pstat.c')
-rw-r--r-- | usr.sbin/pstat/pstat.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/usr.sbin/pstat/pstat.c b/usr.sbin/pstat/pstat.c index c00fc89..7ac83fb 100644 --- a/usr.sbin/pstat/pstat.c +++ b/usr.sbin/pstat/pstat.c @@ -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'; |