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.
1 parent 6fb9c80 commit 843f220Copy full SHA for 843f220
libc-test/build.rs
@@ -1032,7 +1032,10 @@ fn test_solarish(target: &str) {
1032
// excluded from the tests.
1033
"getifaddrs" if is_illumos => true,
1034
1035
- // FIXME: Unsound because `restrict`
+ // FIXME: Our API is unsound. The Rust API allows aliasing
1036
+ // pointers, but the C API requires pointers not to alias.
1037
+ // We should probably be at least using `&`/`&mut` here, see:
1038
+ // https://github.com/gnzlbg/ctest/issues/68
1039
"lio_listio" => true,
1040
1041
_ => false,
0 commit comments