| Age | Commit message (Expand) | Author | Lines |
| 2012-04-06 | adding missing rust_uv_* entries in rustrt.def.in | Jeff Olson | -0/+27 |
| 2012-04-06 | test_uv_tcp_request() fully working on linux | Jeff Olson | -0/+5 |
| 2012-04-06 | wired up uv_read_start and some helper funcs around uv_alloc_cb tasks | Jeff Olson | -1/+30 |
| 2012-04-06 | uv_buf_t's for uv_write() passed by-val .. no more mallocs or ptr cop-outs | Jeff Olson | -14/+4 |
| 2012-04-06 | fixed by-val from rust->c, use ++ sigil in native fn sig <-- NEVAR FORGET | Jeff Olson | -5/+12 |
| 2012-04-06 | fixed passing in uv_buf_t ptr array in uv_write.. return status 0 | Jeff Olson | -2/+8 |
| 2012-04-06 | uv_write works, buffer passing still broke, can get sockaddr_in by val | Jeff Olson | -7/+4 |
| 2012-04-06 | impl of rustrt::rust_uv_write in c++ and whitespace cleanup | Jeff Olson | -37/+46 |
| 2012-04-06 | some more stuff for libuv dealing w/ 1402.. should go away soon | Jeff Olson | -2/+15 |
| 2012-04-06 | adding uv::direct and beginning to work out tcp request case | Jeff Olson | -0/+100 |
| 2012-04-04 | rt: Add architecture-specific general-purpose register definitions | Patrick Walton | -0/+97 |
| 2012-04-03 | std: add localtime/gmtime support. | Erick Tryzelaar | -0/+127 |
| 2012-04-03 | std: fix a typo. | Erick Tryzelaar | -1/+1 |
| 2012-04-03 | std: change timeval to ns resolution timespec | Erick Tryzelaar | -4/+11 |
| 2012-04-03 | std: change time::timeval to be {sec: i64, usec: i32}. | Erick Tryzelaar | -2/+2 |
| 2012-04-03 | Merge remote-tracking branch 'brson/mainthread' | Brian Anderson | -28/+167 |
| 2012-04-03 | rt: Fix bugs in the osmain scheduler | Brian Anderson | -6/+13 |
| 2012-04-03 | rt: Fix bugs in the osmain scheduler | Brian Anderson | -1/+20 |
| 2012-04-03 | rt: Include the correct header for alloca on windows | Brian Anderson | -4/+4 |
| 2012-04-03 | rt: alloca is spelled differently on win32 | Brian Anderson | -0/+4 |
| 2012-04-03 | rt: Fix the 0 bytes lost issue | Brian Anderson | -0/+16 |
| 2012-04-03 | rt: Futz with headers to satisfy FreeBSD | Brian Anderson | -3/+2 |
| 2012-04-03 | fix 'I don't know how C works' | Jon Morton | -1/+5 |
| 2012-04-03 | actually remove memory.h; include cleanups | Jon Morton | -21/+4 |
| 2012-04-03 | Refactor includes structure, getting rid of rust_internal.h | Jon Morton | -412/+311 |
| 2012-04-03 | core: Add a scheduler mode, osmain, to spawn onto the main scheduler | Brian Anderson | -0/+9 |
| 2012-04-02 | Construct new strings through upcalls. | Graydon Hoare | -0/+22 |
| 2012-04-02 | rt: Run a single-threaded scheduler on the main thread | Brian Anderson | -21/+57 |
| 2012-04-02 | rt: Add an assert to rust_get_current_task | Brian Anderson | -0/+1 |
| 2012-04-02 | remove unneeded assert, move get_task_tls to sched_loop | Jon Morton | -27/+27 |
| 2012-04-02 | Add global rust_get_current_task | Jon Morton | -101/+88 |
| 2012-04-02 | rt: cleanup passing around of rust_env | Jon Morton | -11/+7 |
| 2012-04-01 | rt: rust_env is a struct | Brian Anderson | -1/+1 |
| 2012-04-01 | rt: Assert things that are true | Brian Anderson | -1/+1 |
| 2012-04-01 | rt: Convert an old warning to an assert | Brian Anderson | -5/+1 |
| 2012-04-01 | remove rust_srv | Jon Morton | -173/+44 |
| 2012-04-01 | replace assertion macros with plain asserts | Jon Morton | -124/+100 |
| 2012-04-01 | rt: Introduce rust_manual_sched_launcher_factory. Again, so sorry | Brian Anderson | -0/+18 |
| 2012-04-01 | rt: Introduce rust_sched_launcher_factory. Sorry, I need one | Brian Anderson | -10/+31 |
| 2012-04-01 | rt: Allow some schedulers to stay alive even without tasks to execute | Brian Anderson | -8/+26 |
| 2012-04-01 | rt: Introduce rust_manual_sched_launcher | Brian Anderson | -1/+13 |
| 2012-04-01 | rt: rust_sched_launcher needs a virtual destructor | Brian Anderson | -0/+1 |
| 2012-04-01 | rt: rust_sched_launcher does not need a join() method | Brian Anderson | -1/+0 |
| 2012-04-01 | Merge remote-tracking branch 'brson/mainthread' | Brian Anderson | -259/+545 |
| 2012-03-31 | rt: Extract rust_thread_sched_launcher from rust_sched_launcher | Brian Anderson | -9/+26 |
| 2012-03-31 | rt: Fix whitespace | Brian Anderson | -99/+109 |
| 2012-03-31 | rt: Make rust_sched_launcher hide it's thread implementation | Brian Anderson | -10/+5 |
| 2012-03-31 | rt: Add some more locking asserts to rust_sched_loop | Brian Anderson | -0/+2 |
| 2012-03-31 | Revert "rt: Remove lock_held_by_current_thread" | Brian Anderson | -0/+83 |
| 2012-03-31 | rt: Extract start_main_loop from rust_sched_loop to rust_sched_driver | Brian Anderson | -32/+107 |