From defd8a66eade4cb11960cf6de2b45c2f42ec3388 Mon Sep 17 00:00:00 2001 From: Michael Bebenita Date: Wed, 28 Jul 2010 15:17:30 -0700 Subject: Rename rust_proxy_delegate to maybe_proxy, flesh out logic in it. Add strong-ref distinction on rust_proxy. --- src/rt/rust_upcall.cpp | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) (limited to 'src/rt/rust_upcall.cpp') diff --git a/src/rt/rust_upcall.cpp b/src/rt/rust_upcall.cpp index 77d39b859b3..e4604049c4d 100644 --- a/src/rt/rust_upcall.cpp +++ b/src/rt/rust_upcall.cpp @@ -105,7 +105,7 @@ extern "C" CDECL void upcall_del_chan(rust_task *task, rust_chan *chan) { */ extern "C" CDECL rust_chan * upcall_clone_chan(rust_task *task, - rust_proxy_delegate *spawnee_proxy, + maybe_proxy *spawnee_proxy, rust_chan *chan) { LOG_UPCALL_ENTRY(task); rust_task *spawnee = spawnee_proxy->delegate(); @@ -121,8 +121,8 @@ extern "C" CDECL void upcall_yield(rust_task *task) { task->yield(1); } -extern "C" CDECL void upcall_join(rust_task *task, - rust_proxy_delegate *proxy) { +extern "C" CDECL void +upcall_join(rust_task *task, maybe_proxy *proxy) { LOG_UPCALL_ENTRY(task); task->log(rust_log::UPCALL | rust_log::COMM, "join proxy 0x%" PRIxPTR " -> task = 0x%" PRIxPTR, @@ -194,7 +194,7 @@ extern "C" CDECL void upcall_fail(rust_task *task, char const *expr, * Called whenever a task's ref count drops to zero. */ extern "C" CDECL void -upcall_kill(rust_task *task, rust_proxy_delegate *target_proxy) { +upcall_kill(rust_task *task, maybe_proxy *target_proxy) { LOG_UPCALL_ENTRY(task); rust_task *target_task = target_proxy->delegate(); if (target_proxy != target_task) { @@ -504,7 +504,7 @@ upcall_start_task(rust_task *spawner, rust_task *task, return task; } -extern "C" CDECL rust_proxy_delegate * +extern "C" CDECL maybe_proxy * upcall_new_thread(rust_task *task) { LOG_UPCALL_ENTRY(task); @@ -516,16 +516,17 @@ upcall_new_thread(rust_task *task) { "upcall new_thread() = dom 0x%" PRIxPTR " task 0x%" PRIxPTR, new_dom, new_dom->root_task); rust_proxy *proxy = - new (old_dom) rust_proxy(old_dom, new_dom->root_task); + new (old_dom) rust_proxy(old_dom, + new_dom->root_task, true); task->log(rust_log::UPCALL | rust_log::MEM, "new proxy = 0x%" PRIxPTR " -> task = 0x%" PRIxPTR, proxy, proxy->delegate()); return proxy; } -extern "C" CDECL rust_proxy_delegate * +extern "C" CDECL maybe_proxy * upcall_start_thread(rust_task *spawner, - rust_proxy_delegate *root_task_proxy, + maybe_proxy *root_task_proxy, uintptr_t exit_task_glue, uintptr_t spawnee_fn, size_t callsz) { LOG_UPCALL_ENTRY(spawner); -- cgit 1.4.1-3-g733a5