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 ↓ 173 lines elided ↑ open up ↑
 174  174  #define F_SETLK_NBMAND  44      /* private */
 175  175  #if !defined(_STRICT_SYMBOLS)
 176  176  #define F_OFD_GETLK     50      /* Get file lock owned by file */
 177  177  #define F_OFD_SETLK     51      /* Set file lock owned by file */
 178  178  #define F_OFD_SETLKW    52      /* Set file lock owned by file and wait */
 179  179  #define F_FLOCK         55      /* private - set flock owned by file */
 180  180  #define F_FLOCKW        56      /* private - set flock owned by file and wait */
 181  181  #endif  /* _STRICT_SYMBOLS */
 182  182  #endif /* _LP64 || _FILE_OFFSET_BITS == 32 */
 183  183  
      184 +#define F_ASSOCI_PID    (USHRT_MAX)
      185 +#define F_DASSOC_PID    (USHRT_MAX - 1)
      186 +
 184  187  #if     defined(_LARGEFILE64_SOURCE)
 185  188  
 186  189  #if !defined(_LP64) || defined(_KERNEL)
 187  190  /*
 188  191   * transitional large file interface version
 189  192   * These are only valid in a 32 bit application compiled with large files
 190  193   * option, for source compatibility, the 64-bit versions are mapped back
 191  194   * to the native versions.
 192  195   */
 193  196  #define F_SETLK64       34      /* Set file lock */
↓ open down ↓ 213 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX