about summary refs log tree commit diff
path: root/src/rt
AgeCommit message (Expand)AuthorLines
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
2012-03-05rt: Protect rust_task::state with a lockBrian Anderson-5/+15
2012-03-05rt: Protect rust_task::killed with a lockBrian Anderson-4/+13
2012-03-05Extra removal, missed by last commit.Graydon Hoare-6/+0
2012-03-05Remove dead code from rt (debug_obj, rust_obj, rust_closure, rust_box_obj, ru...Graydon Hoare-42/+0
2012-03-05rt: Remove virtual methods from memory_region, rust_srvBrian Anderson-11/+8
2012-03-02rt: Move RUST_POISON_ON_FREE into rust_envBrian Anderson-7/+4
2012-03-02rt: Checking port_table.is_empty() requires a lockBrian Anderson-1/+6
2012-03-02rt: Protect rust_task::supervisor with a lockBrian Anderson-5/+13
2012-03-02rt: Port ref counts are protected by the task lock. Ick.Brian Anderson-1/+1
2012-03-02rt: Always delete task stacks on the task threadBrian Anderson-7/+12
2012-03-02retool inline encoding to handle methods, fix testsNiko Matsakis-360/+351
2012-03-01rt: Make fields of rust_task_thread private where possibleBrian Anderson-39/+36
2012-03-01rt: rust_task_thread isn't ref countedBrian Anderson-2/+0
2012-03-01rt: Remove vec_append.llBrian Anderson-138/+0
2012-03-01rt: Remove rust_kernel::live_tasks. UnusedBrian Anderson-8/+3
2012-02-29add the ability to snag the frame so we can verify that we are inliningNiko Matsakis-1/+25
2012-02-28rt: strings should escape chars like '\n' as '\n'Erick Tryzelaar-4/+13
2012-02-28rt: Reset the stack boundary after returning from crust functionsBrian Anderson-0/+3
2012-02-28add rust_uv_loop_delete to rustrt.def.inJeff Olson-0/+1
2012-02-28add uv::loop_delete()Jeff Olson-2/+8
2012-02-28correcting for libuv behavior that differs between linux & windowsJeff Olson-16/+2
2012-02-28moving new uv stuff into uv.rs and rust_uv.cppJeff Olson-669/+170
2012-02-28fzzzy's patch for rustrt.def.inJeff Olson-0/+13
2012-02-28finishing up simple uv_timer implJeff Olson-8/+51
2012-02-28cleaning up uv_async stuff and stubbing uv_timerJeff Olson-36/+91
2012-02-28removed hello world and added uv_async_*Jeff Olson-3/+37
2012-02-28everything is laid out and working through a basic hwJeff Olson-0/+52
2012-02-28remove temp sanity checkNiko Matsakis-3/+0
2012-02-27rt: Don't zero new stacksBrian Anderson-33/+28
2012-02-27rt: Change the way the kernel exits to avoid pthread leaksBrian Anderson-28/+44
2012-02-27Revert "rt: Reconfigure the C stack for valgrind each time it's used"Brian Anderson-1/+1
2012-02-26rt: Remove unused forward declaration of rust_realloc_sharedBrian Anderson-2/+0
2012-02-26rt: Remove ptr_vec. UnusedBrian Anderson-119/+0
2012-02-26rt: Remove smart_ptr. UnusedBrian Anderson-34/+0
2012-02-24add an option to the final cc so that it prints out/logs unreclaimed ptrsNiko Matsakis-1/+27
2012-02-24Revert "rt: Cut the red zone to 10K on mac"Brian Anderson-2/+2
2012-02-23rt: Cut the red zone to 10K on macBrian Anderson-2/+2
2012-02-23rt: Cut the red zone to 2K on linuxBrian Anderson-2/+2
2012-02-22rt: Cut the red zone to 4K on linuxBrian Anderson-2/+2
2012-02-22rt: Switch to the C stack in reset_stack_limitBrian Anderson-5/+24
2012-02-22rt: Stop logging on the Rust stack. Closes #1478Brian Anderson-1/+9
2012-02-21Remove unused tydesc argument to upcall_shared_mallocMarijn Haverbeke-10/+5
2012-02-20core: New task APIBrian Anderson-0/+9
2012-02-19rt: Add some lock_and_signal assertionsChris Peterson-0/+5
2012-02-19rt: Initialize Windows CRITICAL_SECTION with non-zero spin countChris Peterson-1/+12
2012-02-19rt: Delete Windows CRITICAL_SECTION in dtorChris Peterson-0/+1
2012-02-18rt: rename nano_time() builtin to match time::precise_time_ns()Chris Peterson-2/+2
2012-02-18std: Fix Windows system time conversion for get_time()Chris Peterson-11/+14