File tree 7 files changed +335
-58
lines changed
7 files changed +335
-58
lines changed Original file line number Diff line number Diff line change @@ -299,6 +299,7 @@ pub const MDMBUF: ::tcflag_t = 0x00100000;
299
299
pub const WNOHANG : :: c_int = 0x00000001 ;
300
300
pub const WUNTRACED : :: c_int = 0x00000002 ;
301
301
302
+ pub const RTLD_LAZY : :: c_int = 0x1 ;
302
303
pub const RTLD_NOW : :: c_int = 0x2 ;
303
304
pub const RTLD_NEXT : * mut :: c_void = -1isize as * mut :: c_void ;
304
305
pub const RTLD_DEFAULT : * mut :: c_void = -2isize as * mut :: c_void ;
@@ -313,6 +314,12 @@ pub const TCP_MAXSEG: ::c_int = 2;
313
314
314
315
pub const PIPE_BUF : usize = 512 ;
315
316
317
+ pub const POLLIN : :: c_short = 0x1 ;
318
+ pub const POLLPRI : :: c_short = 0x2 ;
319
+ pub const POLLOUT : :: c_short = 0x4 ;
320
+ pub const POLLERR : :: c_short = 0x8 ;
321
+ pub const POLLHUP : :: c_short = 0x10 ;
322
+ pub const POLLNVAL : :: c_short = 0x20 ;
316
323
pub const POLLRDNORM : :: c_short = 0x040 ;
317
324
pub const POLLWRNORM : :: c_short = 0x004 ;
318
325
pub const POLLRDBAND : :: c_short = 0x080 ;
You can’t perform that action at this time.
0 commit comments