about summary refs log tree commit diff
path: root/src/rt
AgeCommit message (Expand)AuthorLines
2012-03-21rt: Inline a bunch of stack switching codeBrian Anderson-138/+143
2012-03-21rt: Swap the definition of stk_seg::next and prevBrian Anderson-27/+27
2012-03-21rt: Don't switch to the C stack on the upcall_new_stack fast pathBrian Anderson-20/+41
2012-03-21rt: Don't swatch stacks during upcall_del_stackBrian Anderson-51/+42
2012-03-21Every time you don't use a variable, a kitten scowls.Graydon Hoare-0/+1
2012-03-21Quiet unused-result error harder.Graydon Hoare-1/+1
2012-03-21Upgrade valgrind headers to 3.7, silencing build breakage on FreeBSD.Graydon Hoare-1557/+835
2012-03-21Remove incorrect uses of NVALGRIND, Close #1435.Graydon Hoare-2/+0
2012-03-20Some tests for passing and returning structures by value on x64. Close #1402....Graydon Hoare-0/+39
2012-03-19rt: Remove an unused functionBrian Anderson-11/+0
2012-03-19Send string concatenation to specialized upcall, shave 17s off librustc compi...Graydon Hoare-0/+29
2012-03-18rt: Remove rust_task_thread::dead_tasksBrian Anderson-20/+10
2012-03-18rt: Remove rust_task_thread::newborn_tasksBrian Anderson-11/+10
2012-03-18rt: Convert rust_task_list to a typedefBrian Anderson-47/+2
2012-03-18rt: Don't store the name of the task state in rust_task_listBrian Anderson-17/+32
2012-03-18rt: Use an enum to represent the task stateBrian Anderson-32/+58
2012-03-18rt: Remove lock_held_by_current_threadBrian Anderson-47/+0
2012-03-17rt: Remove the recursive lock from rust_task_threadBrian Anderson-7/+1
2012-03-17rt: Ports don't need to ref their tasksBrian Anderson-3/+0
2012-03-17rt: Remove some bogus pthread settings from rust_task_threadBrian Anderson-9/+0
2012-03-16Remove shared tydescsMarijn Haverbeke-86/+0
2012-03-16Remove dynastack support from runtimeMarijn Haverbeke-367/+0
2012-03-16Get rid of rust_crate_cache in the runtimeMarijn Haverbeke-225/+0
2012-03-15core: Channels are just port idsBrian Anderson-18/+10
2012-03-15rt: Remove the kernel task tableBrian Anderson-54/+7
2012-03-15rt: Remove remaining uses of rust_kernel::get_task_by_idBrian Anderson-29/+16
2012-03-15rt: Look up ports through a single port tableBrian Anderson-70/+68
2012-03-15Zero out dest ptr when port_recv doesn't return a valueMarijn Haverbeke-0/+1
2012-03-13rt: Remove an incorrect assert in lock_and_signalBrian Anderson-1/+0
2012-03-12rt: Change alignof to rust_alignof. Remove -Wno-c++11-compat. Closes #1644Brian Anderson-12/+12
2012-03-12rt: Remove arbitrary limit on size of port queue. Closes #1245Brian Anderson-2/+0
2012-03-06rt: Change the rust_port refcounting scheme to avoid racesBrian Anderson-21/+26
2012-03-05rt: Add a hack to fix a port detach bugBrian Anderson-1/+10
2012-03-05rt: Fix the atomic get_ref_count method to avoid racesBrian Anderson-18/+12
2012-03-05rt: Properly block tasks while waiting for port detachBrian Anderson-10/+53
2012-03-05rt: Make rust_port_detach less contentiousBrian Anderson-20/+23
2012-03-05rt: Make linked failure less prone to deadlockBrian Anderson-31/+58
2012-03-05rt: Be more precise with VALGRIND_MAKE_MEM_UNDEFINEDBrian Anderson-5/+23
2012-03-05rt: Stop calling prepare_valgrind_stack when it's not neededBrian Anderson-2/+0
2012-03-05rt: Simplify reap_dead_tasksBrian Anderson-19/+12
2012-03-05rt: Add an assert to the scheduler loopBrian Anderson-1/+2
2012-03-05rt: Move receive code into rust_portBrian Anderson-28/+24
2012-03-05rt: Simplify the recv interfaceBrian Anderson-10/+1
2012-03-05rt: Move some code from rust_port_detach into rust_port::detachBrian Anderson-6/+6
2012-03-05rt: Move some locking from rust_port to rust_taskBrian Anderson-6/+2
2012-03-05rt: Renome rust_task::lock to port_lockBrian Anderson-14/+14
2012-03-05rt: Make the rust_task_thread lock privateBrian Anderson-4/+2
2012-03-05rt: Move transition from rust_task to rust_task_threadBrian Anderson-22/+42
2012-03-05rt: Protect cond and cond_name with the state_lockBrian Anderson-16/+21
2012-03-05rt: Don't take the task lock on state transitionsBrian Anderson-6/+0