about summary refs log tree commit diff
path: root/library/std/src/sys/pal/unix/linux
AgeCommit message (Collapse)AuthorLines
2025-06-18add ChildExt(::send_signal)Jeremy Smart-1/+5
2025-04-04Move fd into sysThalia Archibald-1/+1
2025-02-13std: Apply fixes for tail drop expressionsEric Huss-2/+2
2024-09-08Remove needless returns detected by clippy in librariesEduardo Sánchez Muñoz-5/+6
2024-06-25Check that we get somewhat sane PIDs when spawning with pidfdsThe 8472-0/+3
2024-06-25use pidfd_spawn for faster process creation when pidfds are requestedThe 8472-2/+11
2024-06-22to extract a pidfd we must consume the childThe 8472-3/+2
As long as a pidfd is on a child it can be safely reaped. Taking it would mean the child would now have to be awaited through its pid, but could also be awaited through the pidfd. This could then suffer from a recycling race.
2024-06-22Add PidFd::{kill, wait, try_wait}The 8472-0/+165