diff options
| author | Alfred Perlstein <alfred@FreeBSD.org> | 2001-05-09 03:38:02 +0000 |
|---|---|---|
| committer | Alfred Perlstein <alfred@FreeBSD.org> | 2001-05-09 03:38:02 +0000 |
| commit | b56b39ad4de7396f3bf4ca3a15133faed1c0ed8f (patch) | |
| tree | 373ac2e4c43e4477a478e99d2e2013dbafdec1e8 | |
| parent | 3f514cfc4c40ced51da9d691ca33a919f2c73660 (diff) | |
Notes
| -rw-r--r-- | usr.sbin/pstat/pstat.8 | 8 | ||||
| -rw-r--r-- | usr.sbin/pstat/pstat.c | 10 |
2 files changed, 0 insertions, 18 deletions
diff --git a/usr.sbin/pstat/pstat.8 b/usr.sbin/pstat/pstat.8 index e8d6ddcba607..5b82aca88333 100644 --- a/usr.sbin/pstat/pstat.8 +++ b/usr.sbin/pstat/pstat.8 @@ -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 diff --git a/usr.sbin/pstat/pstat.c b/usr.sbin/pstat/pstat.c index c00fc89539db..7ac83fbf8c69 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'; |
