| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2012-03-31 | rt: Rename rust_task_thread to rust_sched_loop | Brian Anderson | -185/+0 | |
| This class no longer represents a thread; it just schedules tasks. | ||||
| 2012-03-31 | rt: Extract rust_sched_launcher from rust_task_thread | Brian Anderson | -11/+2 | |
| rust_sched_launcher is actually responsible for setting up the thread and starting the loop. There will be other implementations that do not actually set up a new thread, in order to support scheduling tasks on the main OS thread. | ||||
| 2012-03-21 | rt: Stop using large stacks for the main task | Brian Anderson | -2/+1 | |
| 2012-03-18 | rt: Remove rust_task_thread::dead_tasks | Brian Anderson | -1/+1 | |
| 2012-03-18 | rt: Remove rust_task_thread::newborn_tasks | Brian Anderson | -1/+0 | |
| 2012-03-18 | rt: Convert rust_task_list to a typedef | Brian Anderson | -1/+2 | |
| 2012-03-18 | rt: Don't store the name of the task state in rust_task_list | Brian Anderson | -0/+1 | |
| 2012-03-18 | rt: Use an enum to represent the task state | Brian Anderson | -6/+16 | |
| 2012-03-17 | rt: Remove some bogus pthread settings from rust_task_thread | Brian Anderson | -1/+0 | |
| This is all handled by rust_thread, and 'true' isn't even a valid value to pass to pthread_attr_setdetachestate | ||||
| 2012-03-16 | Get rid of rust_crate_cache in the runtime | Marijn Haverbeke | -33/+0 | |
| We are no longer generating dynamic tydescs or dicts. Issue #1982 | ||||
| 2012-03-15 | rt: Remove remaining uses of rust_kernel::get_task_by_id | Brian Anderson | -2/+2 | |
| 2012-03-05 | rt: Make the rust_task_thread lock private | Brian Anderson | -2/+2 | |
| 2012-03-05 | rt: Move transition from rust_task to rust_task_thread | Brian Anderson | -0/+4 | |
| 2012-03-01 | rt: Make fields of rust_task_thread private where possible | Brian Anderson | -30/+27 | |
| 2012-03-01 | rt: rust_task_thread isn't ref counted | Brian Anderson | -1/+0 | |
| 2012-02-27 | Revert "rt: Reconfigure the C stack for valgrind each time it's used" | Brian Anderson | -1/+0 | |
| This reverts commit 859e0256524a1f19ca0c79f518d2bb396355f174. This ended up not fixing the '0 bytes lost' problem and has some performance impact. | ||||
| 2012-02-14 | rt: Reconfigure the C stack for valgrind each time it's used | Brian Anderson | -0/+1 | |
| 2012-02-14 | rt: Don't allocate a C stack for tasks that already have one | Brian Anderson | -1/+1 | |
| 2012-02-09 | rt: Disable some expensive asserts | Brian Anderson | -0/+2 | |
| 2012-02-09 | rt: Inline everything on the C-stack-switching path | Brian Anderson | -0/+52 | |
| 2012-02-09 | rt: Move rust_thread to its own files | Brian Anderson | -0/+1 | |
| 2012-02-09 | rt: Use rust_task_thread's C-stack pool for native calls | Brian Anderson | -0/+4 | |
| 2012-02-09 | rt: Add methods to rust_task_thread for borrowing C stacks | Brian Anderson | -0/+11 | |
| 2012-02-08 | rt: Change the lifecycle of tasks and schedulers for various reasons | Brian Anderson | -0/+3 | |
| This is in preparation for giving schedulers their own life cycle separate from the kernel. Tasks must be deleted before their scheduler thread, so we can't let the scheduler exit before all its tasks have been cleaned up. In this scheme, the scheduler will unregister tasks with the kernel when they are reaped, then drop their ref on the task (there may still be others). When the task ref count hits zero, the task will request to be unregistered from the scheduler, which is responsible for deleting the task. Instead of having the kernel tell the scheduler to exit, let the scheduler decide when to exit. For now it will exit when all of its tasks are unregistered. | ||||
| 2012-02-03 | rt: Make isaac_init not a template | Brian Anderson | -6/+0 | |
| 2012-02-03 | rt: Clean up the way the kernel tracks tasks | Brian Anderson | -2/+2 | |
| 2012-02-03 | rt: Extract rust_scheduler from rust_task_thread | Brian Anderson | -1/+2 | |
| 2012-02-03 | rt: Rename rust_scheduler to rust_task_thread | Brian Anderson | -0/+150 | |
