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/rust_chan.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/rust_chan.h')
| -rw-r--r-- | src/rt/rust_chan.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/rt/rust_chan.h b/src/rt/rust_chan.h index 6aa98247..a6e4d3d6 100644 --- a/src/rt/rust_chan.h +++ b/src/rt/rust_chan.h @@ -5,7 +5,8 @@ class rust_chan : public rc_base<rust_chan>, public task_owned<rust_chan>, public rust_cond { public: - rust_chan(rust_task *task, maybe_proxy<rust_port> *port); + rust_chan(rust_task *task, maybe_proxy<rust_port> *port, size_t unit_sz); + ~rust_chan(); rust_task *task; |