diff options
author | Jerry Jelinek <jerry.jelinek@joyent.com> | 2020-01-24 14:04:27 +0000 |
---|---|---|
committer | Jerry Jelinek <jerry.jelinek@joyent.com> | 2020-01-24 14:04:27 +0000 |
commit | 3e1df384f9e21a6998ea827eee151e8953bb3147 (patch) | |
tree | e4bfd0df712194908bc4bf49a6d2d1788579ada1 | |
parent | 269407a4d5b375a0218804f9e208d722257c2bb0 (diff) | |
download | illumos-joyent-3e1df384f9e21a6998ea827eee151e8953bb3147.tar.gz |
12046 Provide /proc/<PID>/fdinfo/ [missing FEPOLLED from commit a5eb7107f06 breaks build]
-rw-r--r-- | usr/src/uts/common/sys/file.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/usr/src/uts/common/sys/file.h b/usr/src/uts/common/sys/file.h index 556a7ab2a1..f63f2a10da 100644 --- a/usr/src/uts/common/sys/file.h +++ b/usr/src/uts/common/sys/file.h @@ -122,6 +122,11 @@ typedef struct fpollinfo { #if defined(_KERNEL) || defined(_FAKE_KERNEL) /* + * This is a flag that is set on f_flag2, but is never user-visible + */ +#define FEPOLLED 0x8000 + +/* * Fake flags for driver ioctl calls to inform them of the originating * process' model. See <sys/model.h> * |