about summary refs log tree commit diff
path: root/src/libstd/sys/unix/process/zircon.rs
AgeCommit message (Collapse)AuthorLines
2020-07-27mv std libs to library/mark-307/+0
2019-11-29Format libstd/sys with rustfmtDavid Tolnay-62/+111
This commit applies rustfmt with rust-lang/rust's default settings to files in src/libstd/sys *that are not involved in any currently open PR* to minimize merge conflicts. THe list of files involved in open PRs was determined by querying GitHub's GraphQL API with this script: https://gist.github.com/dtolnay/aa9c34993dc051a4f344d1b10e4487e8 With the list of files from the script in outstanding_files, the relevant commands were: $ find src/libstd/sys -name '*.rs' \ | xargs rustfmt --edition=2018 --unstable-features --skip-children $ rg libstd/sys outstanding_files | xargs git checkout -- Repeating this process several months apart should get us coverage of most of the rest of the files. To confirm no funny business: $ git checkout $THIS_COMMIT^ $ git show --pretty= --name-only $THIS_COMMIT \ | xargs rustfmt --edition=2018 --unstable-features --skip-children $ git diff $THIS_COMMIT # there should be no difference
2019-09-25Fix ExitStatus on FuchsiaTyler Mandry-19/+4
Fuchsia exit codes don't follow the convention of libc::WEXITSTATUS et al, and they are 64 bits instead of 32 bits. This gives Fuchsia its own representation of ExitStatus. Additionally, the zircon syscall structs were out of date, causing us to see bogus return codes.
2019-08-30fuchsia: Don't fail to spawn if no stdin existsTyler Mandry-1/+5
2019-08-30Don't try to use /dev/null on FuchsiaTyler Mandry-1/+1
2019-08-29Update zx_time_t to an i64Tyler Mandry-3/+3
2019-02-28libstd => 2018Taiki Endo-4/+4
2018-12-25Remove licensesMark Rousskov-10/+0
2018-12-07Various minor/cosmetic improvements to codeAlexander Regueiro-1/+1
2018-06-07[fuchsia] Migrate from launchpad to fdio_spawn_etcAdam Barth-62/+23
fdio_spawn_etc is the preferred way of creating processes on Fuchsia now.
2017-10-04zircon: update some more zx and lp constantsJames Tucker-17/+11
* Use size_t where size_t is used, while it's not critical on our specifically supported architectures, this is more accurate. * Update HND_SPECIAL_COUNT to the correct value, and give it the size that enum is likely to be.
2017-10-04zircon: the type of zx_handle_t is now unsignedJames Tucker-1/+6
This is a kernel ABI change that landed today. I noticed some other ABI issues and have left a note to cleanup once they are better defined.
2017-09-24LP_CLONE_FDIO_ROOT is now LP_CLONE_FDIO_NAMESPACEJames Tucker-1/+1
2017-09-24Fixed casing issues.P.Y. Laligand-8/+8
2017-09-24The Magenta kernel is now called Zircon.P.Y. Laligand-0/+319