summary refs log tree commit diff
path: root/src/libstd
AgeCommit message (Expand)AuthorLines
2013-08-24auto merge of #8607 : sfackler/rust/extensions, r=brsonbors-123/+122
2013-08-24auto merge of #8740 : brson/rust/rt-opt, r=thestingerbors-204/+232
2013-08-24std::rt: Enforce sanity a while longerBrian Anderson-1/+2
2013-08-24std: Make vec::push_all_move call reserve_at_leastBrian Anderson-1/+1
2013-08-24std::rt: Remove an unnecessary allocation from the main sched loopBrian Anderson-11/+11
2013-08-24std: Convert the runtime TLS key to a Rust global to avoid FFIBrian Anderson-15/+17
2013-08-24std::rt: Remove metrics for perfBrian Anderson-115/+0
2013-08-24std::rt: Reduce MessageQueue contentionBrian Anderson-12/+69
2013-08-24std::rt: Reduce SleeperList contentionBrian Anderson-12/+44
2013-08-24std::rt: Remove extra boxes from MessageQueue and SleeperListBrian Anderson-7/+6
2013-08-24std::rt: Optimize TLS use in change_task_contextBrian Anderson-1/+25
2013-08-24std: More TLS micro-optimizationBrian Anderson-12/+31
2013-08-24Add OwnedStr::into_bytesSteven Fackler-1/+16
2013-08-24Settle on the format/write/print family of namesAlex Crichton-26/+26
2013-08-24Remove ifmt hax and implement fprintfAlex Crichton-17/+39
2013-08-24auto merge of #8732 : kballard/rust/str-truncate, r=thestingerbors-0/+42
2013-08-24auto merge of #8725 : bblum/rust/docs, r=graydonbors-1/+85
2013-08-23Add new function str.truncate()Kevin Ballard-0/+42
2013-08-23std: Convert some assert!s to rtassert!Brian Anderson-5/+6
2013-08-23Define cfg(rtopt) when optimizing. Turn off runtime sanity checksBrian Anderson-2/+7
2013-08-23std: Reduce TLS accessBrian Anderson-15/+18
2013-08-23auto merge of #8716 : andrew-d/rust/andrew-fix-warnings, r=alexcrichtonbors-1/+1
2013-08-23auto merge of #8705 : brson/rust/lesscxx, r=graydonbors-24/+7
2013-08-23rt: Remove old precise GC codeBrian Anderson-3/+0
2013-08-23rt: Remove exit_status helpersBrian Anderson-16/+5
2013-08-23rt: Memory regions are never synchronized nowBrian Anderson-5/+2
2013-08-23Document the task watching / exit code propagation implementation.Ben Blum-1/+85
2013-08-23fix performance regression from invalid IRDaniel Micay-1/+1
2013-08-23Fix some vector function failure tests. Closes #8698Brian Anderson-8/+4
2013-08-23Fix two small warningsAndrew Dunham-1/+1
2013-08-23Rename {Reader,Writer}ByteConversions methodsSteven Fackler-123/+122
2013-08-23auto merge of #8691 : anasazi/rust/fix-timer-interface, r=brsonbors-7/+2
2013-08-23auto merge of #8686 : kmcallister/rust/doc, r=catamorphismbors-1/+4
2013-08-23auto merge of #8681 : mrordinaire/rust/remove-set_args, r=brsonbors-25/+6
2013-08-23auto merge of #8677 : bblum/rust/scratch, r=alexcrichtonbors-51/+82
2013-08-22auto merge of #8671 : kballard/rust/range_inclusive-size-hint, r=thestingerbors-0/+15
2013-08-22auto merge of #8596 : vadimcn/rust/master, r=alexcrichtonbors-78/+29
2013-08-22Disabled broken tests in std::vec.Vadim Chugunov-0/+4
2013-08-22Enabled unit tests in std and extra.Vadim Chugunov-78/+25
2013-08-23removed os::set_args, closing #8325Do Nhat Minh-25/+6
2013-08-22fix 32bit mac build errorJeff Olson-2/+2
2013-08-22make check appeasementJeff Olson-1/+2
2013-08-22std: put FileMode/Access->whence-mask in uvio, open/unlink as fns in file::Jeff Olson-100/+109
2013-08-22std: slight refactor on UvFilestream seek behavior, pre-seek-refactorJeff Olson-38/+34
2013-08-22std: all of the calls in rt::uv::file take a &LoopJeff Olson-44/+43
2013-08-22std: moved static file actions (open,unlink) to FsRequestJeff Olson-63/+63
2013-08-22std: reform fn sigs of FileDescriptor methods (better result signalling)Jeff Olson-42/+46
2013-08-22std: rename tmp file paths to go into ./tmp folder in builddirJeff Olson-10/+10
2013-08-22change FileDescriptor instance methods to use &mut selfJeff Olson-11/+11
2013-08-22std: more seek testsJeff Olson-1/+71