From de611a309006f0976bc9a579eb1087e7a89f79a7 Mon Sep 17 00:00:00 2001 From: Michael Bebenita Date: Tue, 7 Sep 2010 18:39:07 -0700 Subject: 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. --- src/rt/rust_task.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/rt/rust_task.h') diff --git a/src/rt/rust_task.h b/src/rt/rust_task.h index 9a4e0c7b..383707f0 100644 --- a/src/rt/rust_task.h +++ b/src/rt/rust_task.h @@ -50,6 +50,7 @@ rust_task : public maybe_proxy, rust_task(rust_dom *dom, rust_task *spawner, const char *name); + ~rust_task(); void start(uintptr_t exit_task_glue, @@ -110,6 +111,8 @@ rust_task : public maybe_proxy, // Notify tasks waiting for us that we are about to die. void notify_tasks_waiting_to_join(); + rust_handle * get_handle(); + uintptr_t get_fp(); uintptr_t get_previous_fp(uintptr_t fp); frame_glue_fns *get_frame_glue_fns(uintptr_t fp); -- cgit v1.2.3