about summary refs log tree commit diff
path: root/library/std/src/os/unix
AgeCommit message (Expand)AuthorLines
2022-02-10Implement `AsFd` for `&T` and `&mut T`.Dan Gohman-1/+1
2022-02-04Hide Repr details from io::Error, and rework `io::Error::new_const`.Thom Chiovoloni-11/+11
2022-01-28Update tracking issue for unix_socket_creationThomas de Zeeuw-1/+1
2022-01-27Use sockaddr_un in unix SocketAddr::from_pathThomas de Zeeuw-35/+1
2022-01-27Make sockaddr_un safe and use copy_nonoverlappingThomas de Zeeuw-8/+11
2022-01-24Rename SocketAddr::unix to from_pathThomas de Zeeuw-16/+20
2022-01-23Add os::unix::net::SocketAddr::unixThomas de Zeeuw-1/+68
2022-01-15Rollup merge of #92775 - xfix:osstringext-inline, r=m-ou-seMatthias Krüger-0/+2
2022-01-11Inline std::os::unix::ffi::OsStringExt methodsKonrad Borowski-0/+2
2022-01-09Compute most of Public/Exported access level in rustc_resolveLamb-0/+1
2021-12-16Revert "socket ancillary data implementation for dragonflybsd."David CARLIER-90/+6
2021-12-11Rollup merge of #91553 - devnexen:anc_data_dfbsd, r=yaahcMatthias Krüger-6/+90
2021-12-09Auto merge of #81156 - DrMeepster:read_buf, r=joshtriplettbors-11/+1
2021-12-05socket ancillary data implementation for dragonflybsd.David Carlier-6/+90
2021-11-12Rollup merge of #90704 - ijackson:exitstatus-comments, r=joshtriplettMatthias Krüger-1/+1
2021-11-11unix::ExitStatusExt: Correct reference to _exit system callIan Jackson-1/+1
2021-11-09Add a real tracking issue for `CommandExt::groups`Josh Stone-1/+1
2021-11-06use matches!() macro in more placesMatthias Krüger-1/+1
2021-11-02read_bufDrMeepster-11/+1
2021-10-31Rollup merge of #90431 - jkugelman:must-use-std-o-through-z, r=joshtriplettMatthias Krüger-0/+8
2021-10-31Rollup merge of #89786 - jkugelman:must-use-len-and-is_empty, r=joshtriplettMatthias Krüger-0/+2
2021-10-30Add #[must_use] to remaining std functions (O-Z)John Kugelman-0/+8
2021-10-30Add #[must_use] to len and is_emptyJohn Kugelman-0/+2
2021-10-23Rollup merge of #88300 - ijackson:exitstatusext-methods, r=yaahcMatthias Krüger-4/+4
2021-10-22Apply suggestions from code reviewJane Lusby-4/+4
2021-10-15Auto merge of #85379 - mdaverde:uds-abstract, r=joshtriplettbors-4/+416
2021-10-12Rollup merge of #89797 - jkugelman:must-use-is_condition-tests, r=joshtriplettthe8472-0/+1
2021-10-12Rollup merge of #89778 - jkugelman:must-use-as_type-conversions, r=joshtriplettthe8472-0/+1
2021-10-11Add #[must_use] to is_condition testsJohn Kugelman-0/+1
2021-10-11Add #[must_use] to as_type conversionsJohn Kugelman-0/+1
2021-10-10integrate I/O safety changesMilan-7/+6
2021-10-10cross-platform doctestsMilan Landaverde-13/+49
2021-10-10moves use ptr within from_abstract_namespace fnMilan Landaverde-2/+2
2021-10-10Update tracking issue in stability refsMilan Landaverde-7/+7
2021-10-10rustfmtMilan Landaverde-6/+25
2021-10-10Add abstract namespace support for Unix domain socketsMilan Landaverde-5/+363
2021-10-10Add #[must_use] to core and std constructorsJohn Kugelman-0/+1
2021-10-05Apply suggestions from code reviewJane Lusby-4/+4
2021-09-19Rollup merge of #89051 - schctl:master, r=jyn514Yuki Okushi-7/+18
2021-09-17modify std::os docs to be more consistentSachin Cherian-7/+18
2021-09-15Add tracking issue for unix_chownJosh Triplett-3/+3
2021-09-14Add chown functions to std::os::unix::fs to change the owner and group of filesJosh Triplett-0/+70
2021-09-02Rollup merge of #88177 - joshtriplett:stabilize-chroot, r=m-ou-seMara Bos-2/+1
2021-08-24Stabilise unix_process_await_more, extra ExitStatusExt methodsIan Jackson-4/+4
2021-08-23Rollup merge of #88230 - steffahn:a_an, r=oli-obkMara Bos-2/+2
2021-08-22Remove redundant conversions.Dan Gohman-2/+2
2021-08-22Fix typos “a”→“an”Frank Steffahn-2/+2
2021-08-21Implement `AsFd` etc. for `UnixListener`.Dan Gohman-1/+25
2021-08-19Stabilize std::os::unix::fs::chrootJosh Triplett-2/+1
2021-08-19Factor out a common `RawFd`/`AsRawFd`/etc for Unix and WASI.Dan Gohman-289/+51