summary refs log tree commit diff
path: root/src/libstd/sys
AgeCommit message (Expand)AuthorLines
2015-02-11bitrig integrationDave Huseby-16/+159
2015-02-11rollup merge of #22186: GuillaumeGomez/fix-fsAlex Crichton-1/+3
2015-02-11rustc: Fix a number of stability lint holesAlex Crichton-6/+6
2015-02-11Add read and write rights to group and other when creating fileGuillaumeGomez-1/+3
2015-02-10rollup merge of #21920: vojtechkral/main-thread-nameAlex Crichton-4/+0
2015-02-10Fix aarch64 test issues (same level to arm32)Eunji Jeong-1/+9
2015-02-10Auto merge of #21936 - alexcrichton:fsv2, r=aturonbors-13/+1055
2015-02-09std: Add a new `fs` moduleAlex Crichton-13/+1055
2015-02-08Move native thread name setting from thread_info to Thread, fixes #21911Vojtech Kral-4/+0
2015-02-07Fix struct passwd and _SC_GETPW_R_SIZE_MAX for DragonFlyMichael Neumann-1/+3
2015-02-06Rollup merge of #21926 - mzabaluev:raw-lifetime, r=alexcrichtonManish Goregaokar-2/+2
2015-02-06Rollup merge of #21954 - jbcrail:fix-misspelled-comments, r=steveklabnikManish Goregaokar-2/+2
2015-02-06Rollup merge of #21964 - semarie:openbsd-env, r=alexcrichtonManish Goregaokar-14/+14
2015-02-05cleanup: replace `as[_mut]_slice()` calls with deref coercionsJorge Aparicio-63/+62
2015-02-05complete openbsd support for `std::env`Sébastien Marie-7/+3
2015-02-05unbreak tree for openbsd after #21787Sébastien Marie-7/+11
2015-02-05Replace usage of slice::from_raw_buf with slice::from_raw_partsMikhail Zabaluev-2/+2
2015-02-04Fix for misspelled comments.Joseph Crail-2/+2
2015-02-04remove all kind annotations from closuresJorge Aparicio-17/+17
2015-02-04Auto merge of #21544 - P1start:mangle-unicode, r=alexcrichtonbors-7/+7
2015-02-04std::os::errno returns platform specific value. fixes #21898Jormundir-2/+2
2015-02-03rollup merge of #21893: vhbit/ios-build-fixAlex Crichton-14/+17
2015-02-04Fix Unicode name manglingP1start-7/+7
2015-02-03rollup merge of #21835: alexcrichton/iov2Alex Crichton-1/+60
2015-02-03Add new path moduleAaron Turon-2/+2
2015-02-03Rename std::path to std::old_pathAaron Turon-4/+4
2015-02-03std: Add `io` module againAlex Crichton-1/+60
2015-02-03iOS: fixed buildValerii Hiora-14/+17
2015-02-02Test fixes and rebase conflictsAlex Crichton-6/+12
2015-02-02rollup merge of #21830: japaric/for-cleanupAlex Crichton-19/+8
2015-02-02rollup merge of #21787: alexcrichton/std-envAlex Crichton-502/+945
2015-02-02remove unused mut qualifiersJorge Aparicio-1/+1
2015-02-02`for x in xs.into_iter()` -> `for x in xs`Jorge Aparicio-1/+1
2015-02-02`for x in xs.iter()` -> `for x in &xs`Jorge Aparicio-7/+7
2015-02-02register snapshotsJorge Aparicio-11/+0
2015-02-01std: Add a new `env` moduleAlex Crichton-501/+945
2015-02-01openbsd: rebase to masterSébastien Marie-3/+6
2015-02-01openbsd: incoporate remarksSébastien Marie-39/+26
2015-02-01openbsd supportSébastien Marie-28/+144
2015-01-30rollup merge of #21631: tbu-/isize_policeAlex Crichton-7/+7
2015-01-30rollup merge of #21733: mneumann/fix-io-rename-dfAlex Crichton-1/+1
2015-01-30rollup merge of #21678: vojtechkral/threads-native-namesAlex Crichton-2/+52
2015-01-30smoke out remaining bugsJorge Aparicio-1/+1
2015-01-30Remove all `i` suffixesTobias Bucher-7/+7
2015-01-30Rename FullRange to RangeFullNick Cameron-0/+11
2015-01-29Auto merge of #21677 - japaric:no-range, r=alexcrichtonbors-5/+5
2015-01-29s/Show/Debug/gJorge Aparicio-1/+1
2015-01-29convert remaining `range(a, b)` to `a..b`Jorge Aparicio-2/+2
2015-01-29`for x in range(a, b)` -> `for x in a..b`Jorge Aparicio-1/+1
2015-01-29`range(a, b).foo()` -> `(a..b).foo()`Jorge Aparicio-1/+1