about summary refs log tree commit diff
path: root/src/rt/memory.h
AgeCommit message (Collapse)AuthorLines
2012-04-03actually remove memory.h; include cleanupsJon Morton-9/+0
2012-04-03Refactor includes structure, getting rid of rust_internal.hJon Morton-33/+1
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
2011-07-21Lots of work on memory tracking and channels.Eric Holk-12/+17
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.
2011-07-07Some cleanupEric Holk-7/+0
2011-07-07Tightened up the scoping for our various new operators, which shouldEric Holk-11/+20
make it harder to use the wrong one.
2011-07-07Removing the synchronized memory region from tasks.Eric Holk-31/+5
2011-06-28Removed dom_owned, splitting things between task_owned and kernel_owned. Had ↵Eric Holk-20/+25
to re-xfail a few tests brson recently un-xfailed.
2010-09-07Lots of design changes around proxies and message passing. Made it so that ↵Michael Bebenita-5/+0
domains can only talk to other domains via handles, and with the help of the rust_kernel.
2010-08-17Lots of changes around memory managment in the Runtime. Added memory regions ↵Michael Bebenita-0/+60
and fixed race caused by calling rust_srv::malloc() from multiple threads when sending messages.