Closed
Description
Missing accept4(2) in arm-linux-androideabi
target in libc 0.2.87.
To reproduce:
[package]
name = "test"
version = "0.1.0"
authors = ["Thomas de Zeeuw <[email protected]>"]
edition = "2018"
[dependencies]
libc = "=0.2.86" # Change to to .87 to fail.
fn main() {
unsafe { libc::accept4(0, std::ptr::null_mut(), std::ptr::null_mut(), 0) };
}
Related: tokio-rs/mio#1467.