Print this page
XXXX adding PID information to netstat output

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/common/sys/fcntl.h
          +++ new/usr/src/uts/common/sys/fcntl.h
↓ open down ↓ 157 lines elided ↑ open up ↑
 158  158  #else
 159  159  /* ILP32 large file application compilation environment version */
 160  160  #define F_SETLK         34      /* Set file lock */
 161  161  #define F_SETLKW        35      /* Set file lock and wait */
 162  162  #define F_ALLOCSP       28      /* Alllocate file space */
 163  163  #define F_FREESP        27      /* Free file space */
 164  164  #define F_GETLK         33      /* Get file lock */
 165  165  #define F_SETLK_NBMAND  44      /* private */
 166  166  #endif /* _LP64 || _FILE_OFFSET_BITS == 32 */
 167  167  
      168 +#define F_FORKED        29
      169 +#define F_CLOSED        30
      170 +
 168  171  #if     defined(_LARGEFILE64_SOURCE)
 169  172  
 170  173  #if !defined(_LP64) || defined(_KERNEL)
 171  174  /*
 172  175   * transitional large file interface version
 173  176   * These are only valid in a 32 bit application compiled with large files
 174  177   * option, for source compatibility, the 64-bit versions are mapped back
 175  178   * to the native versions.
 176  179   */
 177  180  #define F_SETLK64       34      /* Set file lock */
↓ open down ↓ 199 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX