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 40eb3ed + 7fd5bb5 commit 9f756f3Copy full SHA for 9f756f3
libc-test/build.rs
@@ -1056,6 +1056,9 @@ fn test_solarish(target: &str) {
1056
// const-ness issues
1057
"settimeofday" | "sethostname" => true,
1058
1059
+ // FIXME(1.0): https://github.com/rust-lang/libc/issues/1272
1060
+ "fexecve" => true,
1061
+
1062
// Solaris-different
1063
"getpwent_r" | "getgrent_r" | "updwtmpx" if is_illumos => true,
1064
"madvise" | "mprotect" if is_illumos => true,
src/unix/solarish/mod.rs
@@ -439,6 +439,11 @@ s! {
439
pub aio_errno: c_int,
440
}
441
442
+ pub struct aio_result_t {
443
+ pub aio_return: ::ssize_t,
444
+ pub aio_errno: ::c_int,
445
+ }
446
447
pub struct exit_status {
448
e_termination: c_short,
449
e_exit: c_short,
0 commit comments