Remove notification channels in runtime (closes #1078)

This commit is contained in:
Ben Blum
2012-07-25 00:53:43 -04:00
parent d9e8efca19
commit c68f2d9aab
3 changed files with 0 additions and 37 deletions

View File

@@ -15,7 +15,6 @@ rust_task::rust_task(rust_sched_loop *sched_loop, rust_task_state state,
const char *name, size_t init_stack_sz) :
ref_count(1),
id(0),
notify_enabled(false),
stk(NULL),
runtime_sp(0),
sched(sched_loop->sched),
@@ -141,8 +140,6 @@ cleanup_task(cleanup_args *args) {
task->die();
task->notify(!threw_exception);
#ifdef __WIN32__
assert(!threw_exception && "No exception-handling yet on windows builds");
#endif
@@ -454,23 +451,6 @@ rust_task::calloc(size_t size, const char *tag) {
return local_region.calloc(size, tag);
}
void
rust_task::notify(bool success) {
// FIXME (#1078) Do this in rust code
if(notify_enabled) {
rust_port *target_port =
kernel->get_port_by_id(notify_port);
if(target_port) {
task_notification msg;
msg.id = id;
msg.result = !success ? tr_failure : tr_success;
target_port->send(&msg);
target_port->deref();
}
}
}
size_t
rust_task::get_next_stack_size(size_t min, size_t current, size_t requested) {
LOG(this, mem, "calculating new stack size for 0x%" PRIxPTR, this);
@@ -636,12 +616,6 @@ rust_task::delete_all_stacks() {
}
}
void
rust_task::config_notify(rust_port_id port) {
notify_enabled = true;
notify_port = port;
}
/*
Returns true if we're currently running on the Rust stack
*/