| Age | Commit message (Expand) | Author | Lines |
| 2016-01-15 | Rollup merge of #30776 - antonblanchard:powerpc64_merge, r=alexcrichton | Manish Goregaokar | -5/+16 |
| 2016-01-13 | Incorrect getrandom() system call for PowerPC Linux | Anton Blanchard | -2/+4 |
| 2016-01-13 | Add powerpc64 and powerpc64le support | Anton Blanchard | -5/+14 |
| 2016-01-12 | switch from syscall(2) to getentropy(2) | Sébastien Marie | -1/+1 |
| 2015-12-30 | Auto merge of #30458 - fhahn:fix-warnings-tests-stdlib, r=sanxiyn | bors | -2/+0 |
| 2015-12-29 | Fix warnings when compiling stdlib with --test | Florian Hahn | -2/+0 |
| 2015-12-23 | Use libc's Linux syscall() | Michael McConville | -5/+1 |
| 2015-12-21 | Auto merge of #30352 - alexcrichton:new-snashots, r=nikomatsakis | bors | -2/+0 |
| 2015-12-21 | Register new snapshots | Alex Crichton | -2/+0 |
| 2015-12-21 | unbreak openbsd code | Sébastien Marie | -1/+1 |
| 2015-12-18 | Use libc's syscall() and NR_GETENTROPY const | Michael McConville | -7/+1 |
| 2015-12-18 | Fix build by removing needless type prefix | Michael McConville | -1/+1 |
| 2015-12-18 | Simplify logic checking getentropy's return value | Michael McConville | -5/+3 |
| 2015-12-18 | Use a const for getentropy(2)'s syscall number | Michael McConville | -1/+5 |
| 2015-12-18 | Use the correct syscall name in panic message | Michael McConville | -1/+1 |
| 2015-12-18 | Use the getentropy(2) syscall on OpenBSD | Michael McConville | -1/+65 |
| 2015-12-17 | Trivial cleanup | Michael McConville | -3/+2 |
| 2015-11-09 | std: Migrate to the new libc | Alex Crichton | -29/+8 |
| 2015-09-03 | Use `null()`/`null_mut()` instead of `0 as *const T`/`0 as *mut T` | Vadim Petrochenkov | -1/+2 |
| 2015-08-11 | rollup merge of #27678: alexcrichton/snapshots | Alex Crichton | -4/+0 |
| 2015-08-11 | Register new snapshots | Alex Crichton | -4/+0 |
| 2015-08-11 | std: Fix imports for ios target | Michael Macias | -2/+2 |
| 2015-08-05 | Better FFI discipline | Tamir Duberstein | -3/+1 |
| 2015-08-03 | syntax: Implement #![no_core] | Alex Crichton | -1/+2 |
| 2015-07-27 | Auto merge of #27310 - akiss77:fix-aarch64-getrandom, r=alexcrichton | bors | -1/+3 |
| 2015-07-26 | Fix getrandom syscall number for aarch64-unknown-linux-gnu | Akos Kiss | -1/+3 |
| 2015-07-24 | Fix `improper_ctypes` fallout | Tamir Duberstein | -3/+4 |
| 2015-06-25 | libstd/rand/os.rs: Remove a tiny bit of duplicated code | Cruz Julian Bishop | -3/+1 |
| 2015-05-27 | Use `const fn` to abstract away the contents of UnsafeCell & friends. | Eduard Burtescu | -4/+4 |
| 2015-05-12 | Very hacky MSVC hacks. | Ricky Taylor | -0/+1 |
| 2015-05-09 | Squeeze the last bits of `task`s in documentation in favor of `thread` | Barosl Lee | -2/+2 |
| 2015-04-24 | Change name of unit test sub-module to "tests". | Johannes Oertel | -1/+1 |
| 2015-04-19 | std::rand::os: Fix race condition of atomics | klutzy | -11/+10 |
| 2015-04-14 | std: Remove old_io/old_path/rand modules | Alex Crichton | -12/+13 |
| 2015-04-01 | iOS: os::last_os_error() fallout | Valerii Hiora | -2/+2 |
| 2015-03-31 | Test fixes and rebase conflicts, round 2 | Alex Crichton | -1/+0 |
| 2015-03-31 | std: Clean out #[deprecated] APIs | Alex Crichton | -17/+16 |
| 2015-03-18 | Register new snapshots | Alex Crichton | -6/+0 |
| 2015-03-16 | impl<T> [T] | Jorge Aparicio | -0/+3 |
| 2015-03-05 | Remove integer suffixes where the types in compiled code are identical. | Eduard Burtescu | -8/+8 |
| 2015-03-02 | Use `const`s instead of `static`s where appropriate | Florian Zeitz | -3/+3 |
| 2015-02-24 | iOS: Sync/Send fallout | Valerii Hiora | -4/+1 |
| 2015-02-18 | Remove `i`, `is`, `u`, or `us` suffixes that are not necessary. | Niko Matsakis | -2/+2 |
| 2015-02-17 | Fallout from stabilization | Aaron Turon | -6/+6 |
| 2015-02-06 | Rollup merge of #21925 - sfackler:allow-missing-copy, r=alexcrichton | Manish Goregaokar | -1/+0 |
| 2015-02-03 | Switch missing_copy_implementations to default-allow | Steven Fackler | -1/+0 |
| 2015-02-03 | Rename std::path to std::old_path | Aaron Turon | -1/+1 |
| 2015-02-02 | `for x in xs.iter()` -> `for x in &xs` | Jorge Aparicio | -1/+1 |
| 2015-01-29 | `for x in range(a, b)` -> `for x in a..b` | Jorge Aparicio | -2/+2 |
| 2015-01-28 | Rollup merge of #21676 - Victory:fix-deprication-in-random, r=alexcrichton | Manish Goregaokar | -4/+4 |