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/memory.h | |
| 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/memory.h')
| -rw-r--r-- | src/rt/memory.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/rt/memory.h b/src/rt/memory.h index 22bc15d3..9196e28d 100644 --- a/src/rt/memory.h +++ b/src/rt/memory.h @@ -1,11 +1,6 @@ -/* - * - */ - #ifndef MEMORY_H #define MEMORY_H - inline void *operator new(size_t size, void *mem) { return mem; } |