Files
rust/src/libstd/rt
Alex Crichton bfa9064ba2 Rewrite std::comm
* Streams are now ~3x faster than before (fewer allocations and more optimized)
    * Based on a single-producer single-consumer lock-free queue that doesn't
      always have to allocate on every send.
    * Blocking via mutexes/cond vars outside the runtime
* Streams work in/out of the runtime seamlessly
* Select now works in/out of the runtime seamlessly
* Streams will now fail!() on send() if the other end has hung up
    * try_send() will not fail
* PortOne/ChanOne removed
* SharedPort removed
* MegaPipe removed
* Generic select removed (only one kind of port now)
* API redesign
    * try_recv == never block
    * recv_opt == block, don't fail
    * iter() == Iterator<T> for Port<T>
    * removed peek
    * Type::new
* Removed rt::comm
2013-12-16 17:47:11 -08:00
..
2013-12-15 16:29:17 +11:00
2013-12-11 10:54:06 -08:00
2013-12-11 10:54:06 -08:00
2013-12-10 15:13:12 -08:00
2013-12-16 17:47:11 -08:00
2013-12-16 17:47:11 -08:00
2013-12-15 16:29:17 +11:00
2013-12-15 16:29:17 +11:00
2013-12-16 17:47:11 -08:00
2013-12-16 17:47:11 -08:00
2013-12-08 02:55:28 -05:00
2013-12-10 15:13:12 -08:00