diff options
| author | Michael Bebenita <mbebenita@mozilla.com> | 2010-08-27 18:26:36 -0700 |
|---|---|---|
| committer | Michael Bebenita <mbebenita@mozilla.com> | 2010-09-07 18:41:07 -0700 |
| commit | f8ff013e3cc737b92b5a140dfd0ddcc5ab6773d9 (patch) | |
| tree | 84daaf59d1eb899021e681927e1103cf08b91dd5 /src/rt/rust_srv.cpp | |
| parent | ffdb5fc8582c77eef7b3a30859eaa216872525a4 (diff) | |
| download | rust-f8ff013e3cc737b92b5a140dfd0ddcc5ab6773d9.tar.gz rust-f8ff013e3cc737b92b5a140dfd0ddcc5ab6773d9.zip | |
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.
Diffstat (limited to 'src/rt/rust_srv.cpp')
| -rw-r--r-- | src/rt/rust_srv.cpp | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/rt/rust_srv.cpp b/src/rt/rust_srv.cpp index f2dfef63ab6..d92235623de 100644 --- a/src/rt/rust_srv.cpp +++ b/src/rt/rust_srv.cpp @@ -7,7 +7,8 @@ rust_srv::rust_srv() : local_region(this, false), - synchronized_region(this, true) { + synchronized_region(this, true), + kernel(new rust_kernel(this)) { // Nop. } @@ -73,8 +74,3 @@ rust_srv::warning(char const *expression, expression, file, (int)line, buf); log(msg); } - -rust_srv * -rust_srv::clone() { - return new rust_srv(); -} |
