summary refs log tree commit diff
path: root/src/rt
AgeCommit message (Expand)AuthorLines
2012-03-31rt: Introduce rust_sched_reaperBrian Anderson-7/+56
2012-03-31rt: Refactor the scheduler loop so that it can be driven from withoutBrian Anderson-20/+53
2012-03-31rt: Rename rust_task_thread to rust_sched_loopBrian Anderson-189/+189
2012-03-31rt: Extract rust_sched_launcher from rust_task_threadBrian Anderson-37/+70
2012-03-31initialize cur_thread, first task on thread 0Jon Morton-2/+3
2012-03-31Choose task thread in rust_scheduler by round robinJon Morton-14/+15
2012-03-29rt: Track backtraces of all allocations with RUSTRT_TRACK_ALLOCATIONS=3Brian Anderson-0/+22
2012-03-29rt: Make the CC sweep use the box annihilatorBrian Anderson-190/+7
2012-03-29rt: Make the box annihilator walk and delete contentsBrian Anderson-1/+194
2012-03-29rt: For now, only run the box annihilator after task failureBrian Anderson-6/+14
2012-03-29rustc: Only invoke when there are cleanupsBrian Anderson-1/+0
2012-03-29rt: Free all outstanding boxes at task deathBrian Anderson-0/+20
2012-03-28Remove execvpe use in general, it seems pointless and non-portable.Graydon Hoare-8/+4
2012-03-28Tidy up multiple declarations and STDC_FOO_MACROS guards in headers.Graydon Hoare-72/+33
2012-03-28Fix some gcc-4.4-isms, should build now on 4.1+.Graydon Hoare-2/+10
2012-03-26Disable some advanced (post glibc-2.3) libuv features when building snaps.Graydon Hoare-1/+1
2012-03-23Remove last vestiges of old-style intrinsicsMarijn Haverbeke-796/+0
2012-03-23Revert removal of intrinsicsMarijn Haverbeke-0/+796
2012-03-23Remove support for the old-style intrinsicsMarijn Haverbeke-796/+0
2012-03-22rt: Run resource destructors during cycle collectionBrian Anderson-0/+21
2012-03-21rt: Fix valgrind stack hintsBrian Anderson-15/+5
2012-03-21rt: Shave 16 bytes off the __morestack frameBrian Anderson-2/+2
2012-03-21rt: Shave a few instructions off __morestackBrian Anderson-42/+31
2012-03-21rt: Stop using large stacks for the main taskBrian Anderson-19/+7
2012-03-21rt: Use get_task_from_tcb during stack growth callsBrian Anderson-2/+2
2012-03-21rt: Add rust_task::get_task_from_tcbBrian Anderson-6/+35
2012-03-21rt: Add a task field to stk_seg and populate itBrian Anderson-0/+2
2012-03-21rt: Add a get_sp_limit functionBrian Anderson-0/+40
2012-03-21rt: Rename record_sp to record_sp_limitBrian Anderson-18/+18
2012-03-21rt: Reset the stack limit after catching an exceptionBrian Anderson-0/+4
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