summary refs log tree commit diff
path: root/src/libstd/rt
AgeCommit message (Expand)AuthorLines
2013-10-22Minor grammatical fixes and removed section on 'rust' toolMichael Letterle-2/+2
2013-10-22Drop the '2' suffix from logging macrosAlex Crichton-103/+103
2013-10-20Don't allocate a string when calling printlnAlex Crichton-1/+18
2013-10-19auto merge of #9834 : alexcrichton/rust/morestack, r=brsonbors-67/+412
2013-10-19Use __morestack to detect stack overflowAlex Crichton-67/+412
2013-10-18auto merge of #9926 : Kimundi/rust/future_result_bad_sig, r=huonwbors-25/+0
2013-10-18Made `std::task::TaskBuilder::future_result()` easier to useMarvin Löbel-25/+0
2013-10-17std: Move size/align functions to std::mem. #2240Brian Anderson-7/+7
2013-10-16auto merge of #9721 : klutzy/rust/uv-net-read-fix, r=alexcrichtonbors-8/+38
2013-10-16auto merge of #9655 : kballard/rust/path-rewrite, r=alexcrichtonbors-38/+47
2013-10-15auto merge of #9857 : brson/rust/mainsched, r=alexcrichtonbors-2/+8
2013-10-15path2: Adjust the API to remove all the _str mutation methodsKevin Ballard-27/+28
2013-10-15path2: Replace the path module outrightKevin Ballard-38/+46
2013-10-14std::rt: Fix the set up of the main thread so that it doesn't try to steal workBrian Anderson-2/+8
2013-10-14Remove unused abi attributes.Steve Klabnik-1/+0
2013-10-11auto merge of #9809 : fhahn/rust/remove-old-cratemap-code, r=alexcrichtonbors-170/+10
2013-10-11Remove support for older CrateMap versionsFlorian Hahn-170/+10
2013-10-11De-pub some private runtime componentsAlex Crichton-28/+134
2013-10-10auto merge of #9749 : alexcrichton/rust/less-io, r=brsonbors-145/+1251
2013-10-10Make the file::DirectoryInfo trait publicAlex Crichton-1/+1
2013-10-10Remove some users of io::file_readerAlex Crichton-4/+24
2013-10-10Migrate users of io::fd_t to io::native::file::fd_tAlex Crichton-88/+34
2013-10-10Implement BufferedReader.{read_until, read_line}Alex Crichton-7/+65
2013-10-10Implement rt::io::stdioAlex Crichton-25/+83
2013-10-09auto merge of #9780 : sfackler/rust/extensions2, r=alexcrichtonbors-1/+1
2013-10-09auto merge of #9742 : alexcrichton/rust/issue-9739, r=brsonbors-2/+8
2013-10-09Don't abort if the runtime is run twice.Alex Crichton-2/+8
2013-10-09Implement io::native::processAlex Crichton-0/+752
2013-10-09Implement io::native::stdioAlex Crichton-0/+67
2013-10-09Implement io::native::fileAlex Crichton-25/+230
2013-10-09auto merge of #9664 : alexcrichton/rust/logging, r=huonwbors-19/+2
2013-10-09option: rewrite the API to use compositionDaniel Micay-26/+26
2013-10-09std::rand: Minor clean-up of comments & add a missing default method.Huon Wilson-1/+0
2013-10-09Convert rt::sched::new_sched_rng to use open/read/close rather than f*.Huon Wilson-16/+10
2013-10-09std::rand: make the windows OSRng more correct, remove some C++.Huon Wilson-1/+2
2013-10-09std::rand: Add a trait for seeding RNGs: SeedableRng.Huon Wilson-2/+2
2013-10-09std::rand: Add OSRng, ReaderRng wrappers around the OS RNG & generic Readers ...Huon Wilson-1/+55
2013-10-09std::rand: Add an implementation of ISAAC64.Huon Wilson-1/+1
2013-10-08Make std::rt::io::extensions publicSteven Fackler-1/+1
2013-10-08rm useless fast_ffi attributesDaniel Micay-10/+0
2013-10-07Fix existing privacy/visibility violationsAlex Crichton-5/+26
2013-10-06auto merge of #9593 : fhahn/rust/logging-unsafe-removal, r=alexcrichtonbors-202/+305
2013-10-06get_crate_map returns an OptionFlorian Hahn-23/+42
2013-10-05Make a task name use a `SendStr`, allowing for eitherMarvin Löbel-2/+2
2013-10-05Add code for older crate map versions, bumped crate map version numberFlorian Hahn-38/+171
2013-10-05Use &'self str instead of raw char pointer in ModEntryFlorian Hahn-127/+99
2013-10-05Use slice representation for module entries in CrateMapFlorian Hahn-87/+47
2013-10-05Use slice representation for child crate mapsFlorian Hahn-116/+135
2013-10-05rt::io::net::tcp: Fix eof_twice tests on Win32klutzy-6/+20
2013-10-05std::rt: Add NotConnected to IoErrorKindklutzy-0/+5