| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2020-03-06 | fix various typos | Matthias Krüger | -1/+1 | |
| 2020-01-25 | Rollup merge of #68515 - Wind-River:master_2020, r=alexcrichton | Yuki Okushi | -5/+39 | |
| Support feature process_set_argv0 for VxWorks r? @alexcrichton | ||||
| 2020-01-24 | Support feature process_set_argv0 for VxWorks | BaoshanPang | -5/+39 | |
| 2020-01-10 | make use of pointer::is_null | Lzu Tao | -4/+3 | |
| 2020-01-06 | ignore signal SIGPIPE | BaoshanPang | -10/+2 | |
| 2020-01-06 | Remove weak.rs for VxWorks | Umesh Kalappa | -56/+0 | |
| 2020-01-04 | Rollup merge of #67848 - ollie27:float_link_name_attr, r=Dylan-DPC | Guillaume Gomez | -1/+0 | |
| Remove unused `#[link_name = "m"]` attributes These were perhaps supposed to be `#[link(name = "m")]` but linking libm should be handled by the libc crate anyway. They should have triggered a compile error: #47725 | ||||
| 2020-01-03 | Remove unused `#[link_name = "m"]` attributes | Oliver Middleton | -1/+0 | |
| These were perhaps supposed to be `#[link(name = "m")]` but linking libm should be handled by the libc crate anyway. | ||||
| 2020-01-02 | Use drop instead of the toilet closure `|_| ()` | Lzu Tao | -7/+7 | |
| 2019-12-24 | Deprecate Error::description for real | David Tolnay | -0/+1 | |
| `description` has been documented as soft-deprecated since 1.27.0 (17 months ago). There is no longer any reason to call it or implement it. This commit: - adds #[rustc_deprecated(since = "1.41.0")] to Error::description; - moves description (and cause, which is also deprecated) below the source and backtrace methods in the Error trait; - reduces documentation of description and cause to take up much less vertical real estate in rustdocs, while preserving the example that shows how to render errors without needing to call description; - removes the description function of all *currently unstable* Error impls in the standard library; - marks #[allow(deprecated)] the description function of all *stable* Error impls in the standard library; - replaces miscellaneous uses of description in example code and the compiler. | ||||
| 2019-12-22 | Format the world | Mark Rousskov | -67/+80 | |
| 2019-12-21 | Require issue = "none" over issue = "0" in unstable attributes | Ross MacArthur | -2/+2 | |
| 2019-12-20 | Remove `SOCK_CLOEXEC` dummy variable on platforms that don't use it. | Markus Reiter | -2/+0 | |
| 2019-12-18 | Remove `SO_NOSIGPIPE` dummy variable on platforms that don't use it. | Markus Reiter | -1/+0 | |
| 2019-12-06 | Rollup merge of #67041 - Wind-River:master_base, r=alexcrichton | Yuki Okushi | -0/+3 | |
| add ExitStatusExt into prelude r? @alexcrichton | ||||
| 2019-12-06 | Rollup merge of #66649 - Wind-River:master_xyz, r=alexcrichton | Yuki Okushi | -9/+22 | |
| VxWorks: fix issues in accessing environment variables | ||||
| 2019-12-03 | add ExitStatusExt into prelude | BaoshanPang | -0/+3 | |
| 2019-11-29 | Format libstd/sys with rustfmt | David Tolnay | -480/+524 | |
| 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-11-22 | ensure that access to the environment is synchronized | BaoshanPang | -9/+18 | |
| 2019-11-22 | pass the captured environment variables to rtpSpawn | BaoshanPang | -1/+5 | |
| 2019-11-05 | Rollup merge of #66091 - Wind-River:master_xyz, r=cramertj | Pietro Albini | -1/+2 | |
| Implemented the home_dir for VxWorks Use HOME's value if it is set; otherwise return NONE. | ||||
| 2019-11-05 | Rollup merge of #65905 - cuviper:doc-unix-mode, r=Dylan-DPC | Pietro Albini | -2/+2 | |
| [doc] fixes for unix/vxworks `OpenOptionsExt::mode` | ||||
| 2019-11-04 | Implemented the home_dir for VxWorks | Umesh Kalappa | -1/+2 | |
| 2019-10-29 | vxWorks: remove all code related to UNIX socket as it is not supported by ↵ | BaoshanPang | -1828/+60 | |
| vxWorks | ||||
| 2019-10-28 | [doc] fix the reference to using `OpenOptions::open` | Josh Stone | -1/+1 | |
| 2019-10-28 | [doc] add a possessive apostrophe in `OpenOptionsExt::mode` | Josh Stone | -1/+1 | |
| 2019-10-13 | Rollup merge of #65246 - Wind-River:real_master_2, r=kennytm | Mazdak Farrokhzad | -6/+20 | |
| vxWorks: implement get_path() and get_mode() for File fmt::Debug | ||||
| 2019-10-10 | vxWorks: implement get_path() and get_mode() for File fmt::Debug | BaoshanPang | -6/+20 | |
| 2019-10-08 | add checking (r == 0) | Baoshan Pang | -1/+1 | |
| 2019-09-25 | update rtpSpawn's parameters type(It's prototype has been updated in libc) | Baoshan Pang | -2/+2 | |
| 2019-09-23 | remove rtp.rs, and move rtpSpawn and RTP_ID_ERROR to libc | Baoshan Pang | -302/+2 | |
| 2019-09-20 | Merge pull request #25 from Wind-River/stat | n-salim | -1/+1 | |
| rust stat should call libc stat | ||||
| 2019-09-20 | rust stat should call libc stat | Baoshan Pang | -1/+1 | |
| 2019-09-20 | No home directory on vxWorks | Baoshan Pang | -22/+1 | |
| 2019-09-14 | Rollup merge of #64393 - Wind-River:master_002_envKey, r=alexcrichton | Mazdak Farrokhzad | -2/+1 | |
| declare EnvKey before use to fix build error r? @alexcrichton | ||||
| 2019-09-14 | Rollup merge of #64372 - Wind-River:master, r=alexcrichton | Mazdak Farrokhzad | -7/+14 | |
| use randSecure and randABytes r? @alexcrichton cc @n-salim | ||||
| 2019-09-10 | declare EnvKey before use to fix build error | Baoshan Pang | -2/+1 | |
| 2019-09-11 | Rollup merge of #64129 - Wind-River:master_003, r=alexcrichton | Mazdak Farrokhzad | -5/+3 | |
| vxWorks: set DEFAULT_MIN_STACK_SIZE to 256K and use min_stack to pass initial stack size to rtpSpawn vxWorks: set DEFAULT_MIN_STACK_SIZE to 256K and use min_stack to pass initial stack size to rtpSpawn r? @alexcrichton cc @n-salim | ||||
| 2019-09-10 | use randSecure and randABytes | Baoshan Pang | -7/+14 | |
| 2019-09-10 | remove Copyright notic | Baoshan Pang | -6/+0 | |
| 2019-09-05 | std: Improve downstream codegen in `Command::env` | Alex Crichton | -4/+6 | |
| This commit rejiggers the generics used in the implementation of `Command::env` with the purpose of reducing the amount of codegen that needs to happen in consumer crates, instead preferring to generate code into libstd. This was found when profiling the compile times of the `cc` crate where the binary rlib produced had a lot of `BTreeMap` code compiled into it but the crate doesn't actually use `BTreeMap`. It turns out that `Command::env` is generic enough to codegen the entire implementation in calling crates, but in this case there's no performance concern so it's fine to compile the code into the standard library. This change is done by removing the generic on the `CommandEnv` map which is intended to handle case-insensitive variables on Windows. Instead now a generic isn't used but rather a `use` statement defined per-platform is used. With this commit a debug build of `Command::new("foo").env("a", "b")` drops from 21k lines of LLVM IR to 10k. | ||||
| 2019-09-01 | vxWorks: set DEFAULT_MIN_STACK_SIZE to 256K and use min_stack to pass ↵ | Baoshan Pang | -3/+7 | |
| initial stack size to rtpSpawn | ||||
| 2019-08-30 | remove directory libstd/sys/vxworks/backtrace which is not used any more | Baoshan Pang | -324/+0 | |
| 2019-08-27 | remove the reference to __cxa_thread_atexit_impl | Baoshan Pang | -25/+2 | |
| 2019-08-23 | VxWorks does not provide a way to set the task name except at creation time | Baoshan Pang | -1/+1 | |
| 2019-08-17 | Fixed: error: unnecessary trailing semicolon | Salim Nasser | -1/+1 | |
| 2019-08-03 | Add {IoSlice, IoSliceMut}::advance | Thomas de Zeeuw | -0/+24 | |
| 2019-08-02 | remove unsupported test case | Baoshan Pang | -64/+0 | |
| 2019-07-30 | Rollup merge of #63117 - BaoshanPang:bugfix, r=alexcrichton | Mazdak Farrokhzad | -14/+3 | |
| Use global variable 'environ' to pass environments to rtpSpawn r? @alexcrichton | ||||
| 2019-07-29 | use gloabl variable 'environ' to pass environments to rtpSpawn | Baoshan Pang | -14/+3 | |
