about summary refs log tree commit diff
path: root/src/libstd
AgeCommit message (Expand)AuthorLines
2013-08-04auto merge of #8237 : blake2-ppc/rust/faster-utf8, r=brsonbors-35/+67
2013-08-04std: implement Total{Ord,Eq} for pointers.Huon Wilson-2/+49
2013-08-04syntax: make #[deriving(TotalOrd)] lazy.Huon Wilson-1/+0
2013-08-03std: Remove gc and stackwalkBrian Anderson-444/+0
2013-08-03auto merge of #8264 : thestinger/rust/snapshot, r=Aatchbors-263/+232
2013-08-03auto merge of #8269 : brson/rust/fix-task-cleanup, r=brsonbors-27/+22
2013-08-03remove obsolete `foreach` keywordDaniel Micay-231/+231
2013-08-03register snapshotsDaniel Micay-32/+1
2013-08-03std::rt: Run local storage cleanup and the box annihilator inside the try/catchBrian Anderson-27/+22
2013-08-03auto merge of #8246 : stepancheg/rust/contains-key, r=thestingerbors-17/+5
2013-08-03auto merge of #8219 : sstewartgallus/rust/fix_dynamic_lib, r=graydonbors-36/+70
2013-08-03auto merge of #8213 : kballard/rust/fd-limit, r=brsonbors-4/+83
2013-08-03std: expose the keyed HashMap constructor, for runtime-less use.Huon Wilson-28/+26
2013-08-03auto merge of #8204 : kballard/rust/str-into-owned, r=graydonbors-0/+12
2013-08-03std: add benchmark for vec.mut_iter.Huon Wilson-0/+13
2013-08-03std: use ptr.offset where possible in the vec iterator.Huon Wilson-8/+38
2013-08-03option: mutate() and mutate_default() should return boolKevin Ballard-5/+24
2013-08-03fixed the buffer to make it a more reasonable sizetoddaaro-1/+1
2013-08-03modified logging function to truncate output and adjusted error output format...toddaaro-0/+10
2013-08-03make `for` parse as `foreach` doesDaniel Micay-1/+3
2013-08-03replace all remaining `for` with `foreach` or `do`Daniel Micay-70/+94
2013-08-02librustc: Disallow "unsafe" for external functionsPatrick Walton-623/+539
2013-08-02Bump fd limit on macos when running rt testsKevin Ballard-0/+78
2013-08-02Revert "std::rt: Use a constant 4 threads for multithreaded sched tests"Kevin Ballard-4/+5
2013-08-03Add default implementation of Map::contains_key functionStepan Koltsov-17/+5
2013-08-03Rename IpAddr -> SocketAddr, extract IpAddr from SocketAddrStepan Koltsov-148/+142
2013-08-02Add an assert_may_sleep() check on every context switch.Ben Blum-0/+4
2013-08-02Don't fail from kill signals if already unwinding.Ben Blum-3/+3
2013-08-02(cleanup) Use more do...finally in extra::sync.Ben Blum-0/+6
2013-08-02Fix embarrassing bug where 'unkillable' would unwind improperly when it recei...Ben Blum-2/+44
2013-08-02Fix nasty double-free bug where a newrt chan could get killed after reschedul...Ben Blum-2/+7
2013-08-02Add SendDeferred trait and use it to fix #8214.Ben Blum-24/+157
2013-08-02std: Speed up str::is_utf8blake2-ppc-35/+67
2013-08-02auto merge of #8221 : brson/rust/single-threaded, r=graydonbors-16/+107
2013-08-02auto merge of #8195 : bblum/rust/task-cleanup, r=brsonbors-29/+94
2013-08-02auto merge of #8193 : cmr/rust/linux-errno, r=graydonbors-0/+107
2013-08-02auto merge of #8175 : brson/rust/nodbg, r=graydonbors-2/+0
2013-08-02std: Implement SingleThreaded spawn mode for newschedBrian Anderson-16/+107
2013-08-01Fix calling destructor on uninitialized dynamic library crash.Steven Stewart-Gallus-36/+70
2013-08-02replace `range` with an external iteratorDaniel Micay-90/+84
2013-08-01str: Add method .into_owned(self) -> ~str to StrKevin Ballard-0/+12
2013-08-01modified local to include an implementation for try_unsafe_borrow::<Task> so ...toddaaro-10/+17
2013-08-01fixed incorrect handling of returned scheduler option and restructed schedule...toddaaro-75/+64
2013-08-01minor tweaks - unboxed the coroutine so that it is no longer a ~ pointer insi...toddaaro-32/+72
2013-08-01Fixed a race where a scheduler configured to only run tasks pinned to it woul...toddaaro-8/+35
2013-08-01Have linked failure tests run on the new scheduler instead of requiring RUST_...Ben Blum-79/+152
2013-08-01A major refactoring that changes the way the runtime uses TLS. In thetoddaaro-1022/+887
2013-08-01Temporary workaround to prevent taskgroup cleanup code from failing without a...Ben Blum-3/+13
2013-08-01Make a forgotten assert in comm be cfg(test)-dependentBen Blum-3/+1
2013-08-01Document task killing design and relaxed barrier rationale.Ben Blum-1/+57