We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 75ab4a0 + 41fb480 commit f19436dCopy full SHA for f19436d
src/unix/bsd/mod.rs
@@ -254,6 +254,8 @@ pub const FIOGETOWN: ::c_ulong = 0x4004667b;
254
255
pub const PATH_MAX: ::c_int = 1024;
256
257
+pub const IOV_MAX: ::c_int = 1024;
258
+
259
pub const SA_ONSTACK: ::c_int = 0x0001;
260
pub const SA_SIGINFO: ::c_int = 0x0040;
261
pub const SA_RESTART: ::c_int = 0x0002;
src/unix/linux_like/mod.rs
@@ -847,6 +847,8 @@ pub const SS_DISABLE: ::c_int = 2;
847
848
pub const PATH_MAX: ::c_int = 4096;
849
850
+pub const UIO_MAXIOV: ::c_int = 1024;
851
852
pub const FD_SETSIZE: usize = 1024;
853
854
pub const EPOLLIN: ::c_int = 0x1;
0 commit comments