| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2018-06-26 | Split libcore/task.rs into submodules | Josef Reinhard Brandl | -569/+0 | |
| 2018-06-13 | Improve core::task::TaskObj | Josef Reinhard Brandl | -14/+15 | |
| 2018-06-09 | add inherent methods to Poll | tinaun | -0/+49 | |
| 2018-06-08 | add a few blanket future impls to std | tinaun | -0/+6 | |
| 2018-06-06 | Add Future and task system to the standard library | Taylor Cramer | -0/+513 | |
| 2012-11-28 | Remove uses of #[merge] | Brian Anderson | -1301/+0 | |
| 2012-11-28 | Register snapshots | Brian Anderson | -64/+0 | |
| 2012-11-19 | rustc: Implement explicit self for Eq and Ord. r=graydon | Patrick Walton | -0/+64 | |
| 2012-10-23 | core: Use PortOne instead of Future in future_result | Brian Anderson | -7/+5 | |
| 2012-10-23 | core: Remove the unused Notification enum | Brian Anderson | -24/+3 | |
| 2012-10-23 | core: Use less code for option dancing that notification channel | Brian Anderson | -37/+8 | |
| 2012-10-12 | Make moves explicit in core tests | Tim Chevalier | -21/+26 | |
| 2012-10-11 | Remove comment that is now false | Tim Chevalier | -2/+2 | |
| 2012-10-11 | Update FIXME number | Tim Chevalier | -4/+4 | |
| 2012-10-04 | Remove by-copy mode from std, mostly | Tim Chevalier | -19/+19 | |
| One instance remains in net_tcp due to a foreign fn. Lots of instances remain in serialization.rs, but IIRC that is being removed. I had to do unholy things to task-perf-word-count-generic to get it to compile after demoding pipes. I may well have messed up its performance, but it passes. | ||||
| 2012-10-04 | Forbid deprecated modes again in core | Tim Chevalier | -1/+2 | |
| Sadly, there's only one file that requires deprecated modes (stackwalk)... So, forbid them everywhere else. | ||||
| 2012-10-04 | De-mode comm::Chan | Tim Chevalier | -21/+21 | |
| 2012-10-02 | Removing explicit uses of + mode | Tim Chevalier | -8/+8 | |
| This removes most explicit uses of the + argument mode. Pending a snapshot, I had to remove the forbid(deprecated_modes) pragma from a bunch of files. I'll put it back! + mode still has to be used in a few places for functions that get moved (see task.rs) The changes outside core and std are due to the to_bytes trait and making the compiler (with legacy modes on) agree with the libraries (with legacy modes off) about modes. | ||||
| 2012-10-02 | De-export comm, task. Part of #3583. | Graydon Hoare | -67/+23 | |
| 2012-10-01 | core::task - typo in comment | Daniel Patterson | -1/+1 | |
| 2012-09-28 | Add a demoded version of ptr::addr_of | Tim Chevalier | -2/+2 | |
| Currently, the new version is ptr::p2::addr_of and the old one is ptr::addr_of. This is kind of cheesy, but I need a snapshot before I can ditch the old version, since the pipe compiler generates calls to addr_of. core is converted over to use the new version, std is not. | ||||
| 2012-09-23 | Register snapshots. Remove redundant Eq impls, Makefile hacks | Brian Anderson | -76/+0 | |
| 2012-09-23 | Make it illegal to use modes in a fn signature with providing | Niko Matsakis | -6/+6 | |
| an explicit variable name. (Step one to changing the defaults) First step to #3535 | ||||
| 2012-09-21 | Install new pub/priv/export rules as defaults, old rules accessible under ↵ | Graydon Hoare | -0/+1 | |
| #[legacy_exports]; | ||||
| 2012-09-20 | rustc: De-mode all overloaded operators | Patrick Walton | -0/+76 | |
| 2012-09-19 | core: Hide the docs for the private TaskBuilder impl | Brian Anderson | -0/+2 | |
| 2012-09-19 | core: Decompose task into more submodules | Brian Anderson | -776/+29 | |
| 2012-09-19 | core: Split local_data into local_data/local_data_priv | Brian Anderson | -3/+4 | |
| 2012-09-19 | core: Move TLS to task::local_data | Brian Anderson | -343/+8 | |
| 2012-09-19 | core: More doc cleanup | Brian Anderson | -4/+2 | |
| 2012-09-19 | V2: now with more locks! | Philipp Brüschweiler | -5/+5 | |
| 2012-09-19 | core: Allocate threads on demand, not on scheduler startup | Philipp Brüschweiler | -2/+29 | |
| API change: rust_kernel::create_scheduler() or rust_scheduler::rust_scheduler() respecitevly now take ownership of the launch factory argument, it is needed to create new threads on demand. Also renames rustrt::sched_threads() to rustrt::rust_sched_threads() for consistency. Added rustrt::rust_max_sched_threads() to return the maximal number of scheduled threads of the current scheduler. Fixes #3493. | ||||
| 2012-09-19 | De-mode vec::each() and many of the str iteration routines | Niko Matsakis | -1/+1 | |
| Note that the method foo.each() is not de-moded, nor the other vec routines. | ||||
| 2012-09-18 | core: Rename 'unsafe' mod to 'cast' | Brian Anderson | -18/+18 | |
| 2012-09-18 | core: Move Exclusive and SharedMutableState to the private mod | Brian Anderson | -6/+6 | |
| 2012-09-14 | rustc: Back out box annihilator | Patrick Walton | -0/+6 | |
| 2012-09-13 | Fix broken test in core::task | Brian Anderson | -4/+8 | |
| 2012-09-13 | rt: Implement ThreadPerCore scheduling mode | Philipp Brüschweiler | -4/+14 | |
| Fixes #3465. | ||||
| 2012-09-11 | Make moves explicit in arguments | Tim Chevalier | -10/+10 | |
| 2012-09-10 | Make moves explicit in task; also make option::unwrap take its argument by move | Tim Chevalier | -50/+51 | |
| 2012-09-10 | rustc: Make shape-based compare glue never called for comparison operators. | Patrick Walton | -0/+40 | |
| Only called for string patterns. | ||||
| 2012-09-08 | core: missed rebase cruft cleanup | Jeff Olson | -4/+0 | |
| 2012-09-08 | core: most rebase cruft cleanup | Jeff Olson | -2/+3 | |
| 2012-09-08 | core: change notify_chan eq checks to is_none(), instead | Jeff Olson | -9/+8 | |
| 2012-09-08 | core/std: finish making futures sendable + test.. still issues | Jeff Olson | -1/+1 | |
| 2012-09-08 | core/std: an unending parade of minor tweaks due to renaming Option et al | Jeff Olson | -3/+3 | |
| 2012-09-08 | core: cleanup in task.rs for things missed in last rebase | Jeff Olson | -7/+7 | |
| 2012-09-08 | core: fix breakage in TaskBuilder.future_result | Jeff Olson | -7/+15 | |
| the actual "fix" in this change is the chunk that moves `let x = self.consume()` to after the option dance that results in the `notify_chan` in TaskBuilder.try() the rest is cleanup/sense-making of what some of this code is doing (I'm looking at you, future_result) | ||||
| 2012-09-08 | core: changing pipes::port/chan_one to Port/ChanOne in unsafe.rs | Jeff Olson | -1/+1 | |
| 2012-09-08 | core: Fix stage0 build errors | Brian Anderson | -19/+48 | |
