about summary refs log tree commit diff
path: root/library/std/src/sys/unix/process/process_unix.rs
AgeCommit message (Expand)AuthorLines
2021-10-05Rollup merge of #88828 - FabianWolff:issue-88585, r=dtolnayManish Goregaokar-3/+13
2021-10-03Rollup merge of #88305 - ijackson:exitstatus-debug, r=dtolnayManish Goregaokar-2/+14
2021-10-01Call `libc::sigaction()` only on AndroidFabian Wolff-3/+14
2021-09-28Clean up unneeded explicit pointer castDavid Tolnay-1/+1
2021-09-10Use `libc::sigaction()` instead of `sys::signal()` to prevent a deadlockFabian Wolff-4/+3
2021-08-24Manual Debug for Unix ExitCode ExitStatus ExitStatusErrorIan Jackson-2/+14
2021-08-24Remove unnecessary unsafe block in `process_unix`Léo Lanteri Thauvin-2/+1
2021-08-19Fix an unused import warning.Dan Gohman-1/+1
2021-08-19Update PidFd for the new I/O safety APIs.Dan Gohman-5/+11
2021-07-21Add tracking issue and link to man-pageDominik Stolz-1/+1
2021-07-21Add PidFd type and seal traitsDominik Stolz-84/+116
2021-07-21Typo fixJosh Triplett-1/+1
2021-07-21Add Linux-specific pidfd process extensionsAaron Hill-6/+104
2021-07-10Change `weak!` and `linkat!` to macros 2.0Aris Merchant-0/+8
2021-05-20Add `ExitStatusError` for `vxworks`Christiaan Dirkx-1/+1
2021-05-18Auto merge of #82973 - ijackson:exitstatuserror, r=yaahcbors-3/+28
2021-05-12Provide ExitStatusErrorIan Jackson-3/+28
2021-05-07panic/fork: Command: Do not unwind after fork() in childIan Jackson-0/+1
2021-03-29Simplify Command::spawn (no semantic change)Josh Triplett-33/+27
2021-03-28Rollup merge of #83462 - ijackson:exitstatus-message-wording, r=joshtriplettYuki Okushi-1/+1
2021-03-25ExitStatus: print "exit status: {}" rather than "exit code: {}"Ian Jackson-1/+1
2021-03-24Rollup merge of #83353 - m-ou-se:io-error-avoid-alloc, r=nagisaDylan DPC-4/+10
2021-03-21Use io::Error::new_const everywhere to avoid allocations.Mara Bos-4/+10
2021-03-14Revert "Revert "use RWlock when accessing os::env #81850""The8472-3/+3
2021-03-10Rollup merge of #82949 - the8472:forget-envlock-on-fork, r=joshtriplettDylan DPC-6/+9
2021-03-10Rollup merge of #82411 - ijackson:fix-exitstatus, r=dtolnayYuki Okushi-2/+15
2021-03-09Do not attempt to unlock envlock in child process after a fork.The8472-6/+9
2021-03-07Revert "use RWlock when accessing os::env #81850"Eric Huss-3/+3
2021-02-23process::unix: Test wait status formattingIan Jackson-0/+4
2021-02-22process::unix: Handle other wait statuses in ExitStatus as DisplayIan Jackson-2/+11
2021-02-08introduce StaticRWLock wrapper to make methods safeThe8472-3/+3
2021-02-07use rwlock for accessing ENVThe8472-3/+3
2021-01-21Add setgroups to std::os::unix::process::CommandExtslo1-7/+14
2021-01-17Don't use posix_spawn_file_actions_addchdir_np on macOS.Eric Huss-4/+14
2021-01-13unix ExitStatus: Provide .continued()Ian Jackson-0/+4
2021-01-13unix ExitStatus: Provide .stopped_signal()Ian Jackson-0/+4
2021-01-13unix ExitStatus: Provide .core_dumpedIan Jackson-0/+4
2021-01-13unix ExitStatus: Provide .into_raw()Ian Jackson-0/+4
2021-01-13unix ExitStatus: Do not treat WIFSTOPPED as WIFSIGNALEDIan Jackson-1/+1
2020-10-20Check that pthread mutex initialization succeededTomasz Miąsko-5/+1
2020-10-17Auto merge of #77455 - asm89:faster-spawn, r=kennytmbors-1/+1
2020-10-16Take some of sys/vxworks/process/* from sys/unix instead.Mara Bos-0/+4
2020-10-08Check for errors returned from posix_spawn*_init functionsTomasz Miąsko-8/+10
2020-10-08Check for non-zero return value from posix_spawn functionsTomasz Miąsko-10/+14
2020-10-04Update libc to 0.2.79Josh Triplett-23/+3
2020-10-02Rollup merge of #77432 - tmiasko:posix-spawn-musl, r=cuviperJonas Schievink-6/+8
2020-10-02Use posix_spawn() on unix if program is a pathAlexander Mols-1/+1
2020-10-02Auto merge of #77029 - ehuss:command-access, r=dtolnaybors-2/+2
2020-10-01Use posix_spawn on musl targetsTomasz Miąsko-6/+8
2020-09-29Use `rtassert!` instead of `assert!` from the child process after fork() in s...hyd-dev-1/+1