diff options
| author | Michael Bebenita <[email protected]> | 2010-09-07 18:39:07 -0700 |
|---|---|---|
| committer | Michael Bebenita <[email protected]> | 2010-09-07 18:44:12 -0700 |
| commit | de611a309006f0976bc9a579eb1087e7a89f79a7 (patch) | |
| tree | cd30b33ab1986c0cc84e0fc0743593bd99b0caaa /src/rt/util | |
| parent | Started work on a framework for writing runtime tests, added some simple test... (diff) | |
| download | rust-de611a309006f0976bc9a579eb1087e7a89f79a7.tar.xz rust-de611a309006f0976bc9a579eb1087e7a89f79a7.zip | |
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.
Diffstat (limited to 'src/rt/util')
| -rw-r--r-- | src/rt/util/indexed_list.h | 4 |
1 files changed, 2 insertions, 2 deletions
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<typename T> class indexed_list { - memory_region ®ion; + memory_region *region; array_list<T*> 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() { |