| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2019-09-03 | Merge pull request #12 from rust-lang/master | Baoshan | -715/+156 | |
| sync with rust-lang/rust branch master | ||||
| 2019-09-03 | make wasi a target-specific dependency | Artyom Pavlov | -1/+3 | |
| 2019-09-03 | Changed comment to better reflect std's exceptional situation | Daniel Henry-Mantilla | -4/+4 | |
| 2019-09-03 | Added warning around code with reference to uninit bytes | Daniel Henry-Mantilla | -0/+8 | |
| 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-09-01 | Rollup merge of #64039 - pickfire:patch-1, r=jonas-schievink | Mazdak Farrokhzad | -2/+2 | |
| Update sync condvar doc style | ||||
| 2019-09-01 | Rollup merge of #63410 - johnterickson:master, r=joshtriplett | Mazdak Farrokhzad | -22/+24 | |
| Update BufWriter example to include call to flush() I was playing with a writing a Huffman encoder/decoder and was getting weird corruptions and truncations. I finally realized it was was because `BufWriter` was swallowing write errors 😬. I've found Rust to generally be explicit and err on the safe side, so I definitely found this unintuitive and not "rustic". https://twitter.com/johnterickson/status/1159514988123312128 | ||||
| 2019-08-31 | Auto merge of #64025 - Wind-River:master_003, r=alexcrichton | bors | -324/+0 | |
| remove directory libstd/sys/vxworks/backtrace which is not used any more r? @alexcrichton cc @n-salim | ||||
| 2019-08-31 | Update sync condvar doc style | Ivan Tham | -2/+2 | |
| 2019-08-31 | clarify that not all errors are observed | John Erickson | -2/+3 | |
| 2019-08-31 | Add in generic type to description of BufReader and BufWriter | John Erickson | -17/+17 | |
| 2019-08-31 | Update BufWriter example to include call to flush() | John Erickson | -6/+7 | |
| 2019-08-30 | Fix unlock ordering in SGX synchronization primitives | Jethro Beekman | -20/+32 | |
| 2019-08-30 | fuchsia: Fix default environment behavior when spawning | Tyler Mandry | -2/+5 | |
| 2019-08-30 | fuchsia: Don't fail to spawn if no stdin exists | Tyler Mandry | -22/+41 | |
| 2019-08-30 | Rollup merge of #62957 - dns2utf8:doc_loop_keyword, r=GuillaumeGomez | Mazdak Farrokhzad | -3/+4 | |
| Match the loop examples The idea is to show the usefulness of the expression side by side. | ||||
| 2019-08-30 | remove directory libstd/sys/vxworks/backtrace which is not used any more | Baoshan Pang | -324/+0 | |
| 2019-08-30 | Don't try to use /dev/null on Fuchsia | Tyler Mandry | -9/+36 | |
| 2019-08-30 | simplify code | newpavlov | -5/+12 | |
| 2019-08-29 | Update zx_time_t to an i64 | Tyler Mandry | -3/+3 | |
| 2019-08-29 | update to wasi v0.7 | newpavlov | -53/+68 | |
| 2019-08-29 | Rollup merge of #63979 - alexcrichton:remove-wasm-syscall, r=dtolnay | Mazdak Farrokhzad | -251/+18 | |
| std: Remove the `wasm_syscall` feature This commit removes the `wasm_syscall` feature from the wasm32-unknown-unknown build of the standard library. This feature was originally intended to allow an opt-in way to interact with the operating system in a posix-like way but it was never stabilized. Nowadays with the advent of the `wasm32-wasi` target that should entirely replace the intentions of the `wasm_syscall` feature. | ||||
| 2019-08-29 | Rollup merge of #63963 - Wind-River:master_003, r=alexcrichton | Mazdak Farrokhzad | -25/+2 | |
| remove the reference to __cxa_thread_atexit_impl r? @alexcrichton cc @n-salim | ||||
| 2019-08-28 | Let 'clamp' be invoked without using return value; used in tests | Kyle Strand | -1/+4 | |
| 2019-08-28 | Annotate functions taking extra args | Kyle Strand | -2/+21 | |
| 2019-08-28 | Add reason for each 'must_use' | Kyle Strand | -58/+58 | |
| 2019-08-28 | std: Remove the `wasm_syscall` feature | Alex Crichton | -251/+18 | |
| This commit removes the `wasm_syscall` feature from the wasm32-unknown-unknown build of the standard library. This feature was originally intended to allow an opt-in way to interact with the operating system in a posix-like way but it was never stabilized. Nowadays with the advent of the `wasm32-wasi` target that should entirely replace the intentions of the `wasm_syscall` feature. | ||||
| 2019-08-27 | remove the reference to __cxa_thread_atexit_impl | Baoshan Pang | -25/+2 | |
| 2019-08-27 | Rollup merge of #63698 - Phosphorus15:master, r=nagisa | Mazdak Farrokhzad | -19/+24 | |
| Fixed floating point issue with asinh function This should fixes #63271 , in which `asinh(-0.0)` returns `0.0` instead of `-0.0`. according to @nagisa > > > IEEE-754 (2008), section 9.2.1: > > > For the functions expm1, exp2m1, exp10m1, logp1, log2p1, log10p1, sin, tan, sinPi, atanPi, asin, atan, sinh, tanh, asinh, and atanh, f(+0) is +0 and f(−0) is −0 with no exception. > > and > > > sinh(±∞) and asinh(±∞) are ±∞ with no exception. After ensuring that the function `asinh` is the only function affected (functions like `sin`, `sinh` are all based on `cmath` library or `llvm` intrinsics), and that `atanh` always gives the correct result. The only function to modify is `asinh`. | ||||
| 2019-08-26 | Rollup merge of #63836 - Wind-River:master_003, r=alexcrichton | Mazdak Farrokhzad | -1/+1 | |
| VxWorks does not provide a way to set the task name except at creation time Make set_name do thing as VxWorks does not provide a way to set the task name except at creation time. r? @alexcrichton cc @n-salim | ||||
| 2019-08-26 | Update src/libstd/time.rs | Christian Veenman | -1/+3 | |
| Co-Authored-By: lzutao <taolzu@gmail.com> | ||||
| 2019-08-26 | Comment out println in read_dir sorting example | Ali Raheem | -5/+5 | |
| 2019-08-24 | Merge branch 'master' into wasi | Artyom Pavlov | -118/+167 | |
| 2019-08-25 | Document platform-specific behavior of the iterator returned by ↵ | Marcin Mielniczuk | -1/+2 | |
| std::fs::read_dir | ||||
| 2019-08-24 | Add 'must_use' to all functions 'fn(float) -> float' | Kyle Strand | -0/+56 | |
| 2019-08-24 | Added table containing the system calls used by Instant and SystemTime. | Christian | -0/+30 | |
| 2019-08-23 | Auto merge of #63814 - malbarbo:wasi-error-kind, r=alexcrichton | bors | -2/+18 | |
| Implement decode_error_kind for wasi Based on the implementation for unix targets, | ||||
| 2019-08-23 | VxWorks does not provide a way to set the task name except at creation time | Baoshan Pang | -1/+1 | |
| 2019-08-23 | Implement decode_error_kind for wasi | Marco A L Barbosa | -2/+18 | |
| Based on the implementation for unix targets | ||||
| 2019-08-23 | Auto merge of #63815 - sebastinez:sebastinez-doc-#63792, r=jonas-schievink | bors | -1/+1 | |
| Update occurences of as_slice to as_str in comments Fix #63792 | ||||
| 2019-08-23 | Auto merge of #63521 - newpavlov:redox_builder, r=pietroalbini | bors | -13/+12 | |
| Re-enable Redox builder (take 2) Closes: #63160 | ||||
| 2019-08-22 | VxWorks ignores the SO_SNDTIMEO socket option (this is long-standing | Salim Nasser | -2/+4 | |
| behavior), so skip the following tests: net::tcp::tests::timeouts net::udp::tests::timeouts | ||||
| 2019-08-22 | Update occurences of as_slice | Sebastian Martinez | -1/+1 | |
| Update occurences of as_slice to as_str | ||||
| 2019-08-22 | Fix for 7e13679. | Tomasz Różański | -2/+2 | |
| 2019-08-22 | Change variables names to be more consistent. | Tomasz Różański | -16/+16 | |
| Changed all instances of `c_str` into `cstr` in the documentation examples. This is also consistent with the module source code. | ||||
| 2019-08-22 | Make use of existing constants. | Tomasz Różański | -20/+18 | |
| f32::consts::PI / 2.0 -> f32::consts::FRAC_PI_2 f32::consts::PI / 4.0 -> f32::consts::FRAC_PI_4 f64::consts::PI / 2.0 -> f64::consts::FRAC_PI_2 f64::consts::PI / 4.0 -> f64::consts::FRAC_PI_4 | ||||
| 2019-08-22 | Change code formatting for readability. | Tomasz Różański | -18/+18 | |
| 2019-08-22 | Fix punctuation. | Tomasz Różański | -1/+1 | |
| 2019-08-22 | Remove redundant `mut`. | Tomasz Różański | -1/+1 | |
| 2019-08-21 | move cvt | newpavlov | -24/+25 | |
