From de611a309006f0976bc9a579eb1087e7a89f79a7 Mon Sep 17 00:00:00 2001 From: Michael Bebenita Date: Tue, 7 Sep 2010 18:39:07 -0700 Subject: Lots of design changes around proxies and message passing. Made it so that domains can only talk to other domains via handles, and with the help of the rust_kernel. --- src/rt/util/indexed_list.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/rt/util') diff --git a/src/rt/util/indexed_list.h b/src/rt/util/indexed_list.h index b93945cc..d643a050 100644 --- a/src/rt/util/indexed_list.h +++ b/src/rt/util/indexed_list.h @@ -28,10 +28,10 @@ public: * object inserted in this list must define a "int32_t list_index" member. */ template class indexed_list { - memory_region ®ion; + memory_region *region; array_list list; public: - indexed_list(memory_region ®ion) : region(region) {} + indexed_list(memory_region *region) : region(region) {} virtual int32_t append(T *value); virtual bool pop(T **value); virtual size_t length() { -- cgit v1.2.3