| Age | Commit message (Collapse) | Author | Lines |
|
|
|
Many changes to code structure are included:
- removed TIME_SLICE_IN_MS
- removed sychronized_indexed_list
- removed region_owned
- kernel_owned move to kernel.h, task_owned moved to task.h
- global configs moved to rust_globals.h
- changed #pragma once to standard guard in rust_upcall.h
- got rid of memory.h
|
|
We're trying to get closer to doing correct move semantics for channel
operations. This involves a lot of cleanup (such as removing the
unused sched parameter from rust_vec constructor) and making
circular_buffer kernel_owned.
Added tagging for memory allocations. This means we give a string tag
to everything we allocate. If we leak something and TRACK_ALLOCATIONS
is enabled, then it's much easier now to tell exactly what is leaking.
|
|
|
|
make it harder to use the wrong one.
|
|
|
|
to re-xfail a few tests brson recently un-xfailed.
|
|
domains can only talk to other domains via handles, and with the help of the rust_kernel.
|
|
and fixed race caused by calling rust_srv::malloc() from multiple threads when sending messages.
|