From f8ff013e3cc737b92b5a140dfd0ddcc5ab6773d9 Mon Sep 17 00:00:00 2001 From: Michael Bebenita Date: Fri, 27 Aug 2010 18:26:36 -0700 Subject: Added a few utility classes, cleaned up the include order of .h files, and started to make the Rust kernel own domain message queues rather than the Rust domains themselves. --- src/rt/rust_srv.h | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) (limited to 'src/rt/rust_srv.h') diff --git a/src/rt/rust_srv.h b/src/rt/rust_srv.h index e617c002..ab646ae6 100644 --- a/src/rt/rust_srv.h +++ b/src/rt/rust_srv.h @@ -1,17 +1,13 @@ -/* - * - */ - #ifndef RUST_SRV_H #define RUST_SRV_H -#include "sync/spin_lock.h" -#include "memory_region.h" +#include "rust_internal.h" class rust_srv { public: memory_region local_region; memory_region synchronized_region; + rust_kernel *kernel; virtual void log(char const *msg); virtual void fatal(char const *expression, char const *file, @@ -28,7 +24,6 @@ public: virtual void *realloc(void *, size_t); rust_srv(); virtual ~rust_srv(); - virtual rust_srv *clone(); }; #endif /* RUST_SRV_H */ -- cgit v1.2.3