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 f7de365 + 1be630f commit 9c2b839Copy full SHA for 9c2b839
src/unix/bsd/apple/mod.rs
@@ -2818,6 +2818,10 @@ pub const SIGEV_THREAD: ::c_int = 3;
2818
pub const AIO_CANCELED: ::c_int = 2;
2819
pub const AIO_NOTCANCELED: ::c_int = 4;
2820
pub const AIO_ALLDONE: ::c_int = 1;
2821
+#[deprecated(
2822
+ since="0.2.64",
2823
+ note="Can vary at runtime. Use sysconf(3) instead")
2824
+]
2825
pub const AIO_LISTIO_MAX: ::c_int = 16;
2826
pub const LIO_NOP: ::c_int = 0;
2827
pub const LIO_WRITE: ::c_int = 2;
src/unix/bsd/freebsdlike/mod.rs
@@ -239,6 +239,10 @@ cfg_if! {
239
}
240
241
242
243
244
245
246
247
pub const AIO_CANCELED: ::c_int = 1;
248
pub const AIO_NOTCANCELED: ::c_int = 2;
0 commit comments