about summary refs log tree commit diff
path: root/src/libstd/task/rt.rs
AgeCommit message (Collapse)AuthorLines
2013-08-09Remove the C++ runtime. SayonaraBrian Anderson-66/+0
2013-07-30std: Remove ManualThreads spawn modeBrian Anderson-2/+0
2013-07-20librustc: Remove `pub extern` and `priv extern` from the language.Patrick Walton-21/+21
Place `pub` or `priv` on individual items instead.
2013-07-18auto merge of #7856 : brson/rust/no-thread-per-core, r=pcwaltonbors-1/+0
This doesn't make sense under the new scheduler.
2013-07-09std: Remove ThreadPerCore spawn mode. UnusedBrian Anderson-1/+0
2013-07-09Use purely an owned vector for storing TLS dataAlex Crichton-3/+1
2013-05-27Get rid of no-longer-needed #[doc(hidden)] attributes.Lindsey Kuper-1/+1
There were several old `#[doc(hidden)]` attributes in libstd and libextra, left over from when rustdoc didn't hide private definitions, tagged with `FIXME #3538`. Since #3538 is now closed, I removed the `#[doc(hidden)]` attributes as well as the FIXMEs, but I left `#[doc(hidden)]` in libstd/task/spawn.rs and libstd/task/rt.rs since those two are apparently `pub`, as well as in libextra/std.rc since std/extra is `pub`.
2013-05-22libstd: Rename libcore to libstd and libstd to libextra; update makefiles.Patrick Walton-0/+71
This only changes the directory names; it does not change the "real" metadata names.