| ... | ... | @@ -9927,7 +9927,9 @@ pub const EVFILT = switch (native_os) { |
| 9927 | 9927 | pub const PROC = -5; |
| 9928 | 9928 | pub const SIGNAL = -6; |
| 9929 | 9929 | pub const TIMER = -7; |
| 9930 | pub const DEVICE = -8; |
| 9930 | 9931 | pub const EXCEPT = -9; |
| 9932 | pub const USER = -10; |
| 9931 | 9933 | }, |
| 9932 | 9934 | else => void, |
| 9933 | 9935 | }; |
| ... | ... | @@ -10155,6 +10157,14 @@ pub const NOTE = switch (native_os) { |
| 10155 | 10157 | pub const CHILD = 0x00000004; |
| 10156 | 10158 | // data/hint flags for EVFILT.DEVICE |
| 10157 | 10159 | pub const CHANGE = 0x00000001; |
| 10160 | // data/hint flags for EVFILT_USER |
| 10161 | pub const FFNOP = 0x00000000; |
| 10162 | pub const FFAND = 0x40000000; |
| 10163 | pub const FFOR = 0x80000000; |
| 10164 | pub const FFCOPY = 0xc0000000; |
| 10165 | pub const FFCTRLMASK = 0xc0000000; |
| 10166 | pub const FFLAGSMASK = 0x00ffffff; |
| 10167 | pub const TRIGGER = 0x01000000; |
| 10158 | 10168 | }, |
| 10159 | 10169 | else => void, |
| 10160 | 10170 | }; |