rust/library/std
Matthias Krüger 50982bd4ab
Rollup merge of #119632 - ivmarkov:master, r=Nilstrieb,dtolnay
Fix broken build for ESP IDF due to #119026

`target_os = "espidf"` in `libc` lacks the `SOMAXCONN` constant, but that's probably irrelevant in this context, as `UnixListener` is not supported on ESP IDF - it being a single process "OS" only.

The PR just re-uses the `128` constant so that the code builds. Trying to use the listener on ESP IDF will fail with `ENOSYS`, which is fine.

*UPDATE* Might not fail with `ENOSYS` - need to test what error code would be returned, but that doesn`t change anything.
2024-01-09 05:33:22 +01:00
..
benches
src Rollup merge of #119632 - ivmarkov:master, r=Nilstrieb,dtolnay 2024-01-09 05:33:22 +01:00
tests
build.rs add teeos std impl 2023-12-07 10:33:03 +08:00
Cargo.toml Use different cfg for AIX 2023-12-13 10:15:27 +08:00