diff options
Diffstat (limited to 'src/rt/rust_task.cpp')
| -rw-r--r-- | src/rt/rust_task.cpp | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/rt/rust_task.cpp b/src/rt/rust_task.cpp index 435f563713e..a9246963ca4 100644 --- a/src/rt/rust_task.cpp +++ b/src/rt/rust_task.cpp @@ -21,7 +21,6 @@ #include "rust_task.h" #include "rust_env.h" -#include "rust_port.h" #include "rust_globals.h" #include "rust_crate_map.h" @@ -37,7 +36,6 @@ rust_task::rust_task(rust_sched_loop *sched_loop, rust_task_state state, kernel(sched_loop->kernel), name(name), list_index(-1), - rendezvous_ptr(0), boxed(sched_loop->kernel->env, &local_region), local_region(&sched_loop->local_region), unwinding(false), @@ -344,12 +342,6 @@ void rust_task::fail_sched_loop() { sched_loop->fail(); } -frame_glue_fns* -rust_task::get_frame_glue_fns(uintptr_t fp) { - fp -= sizeof(uintptr_t); - return *((frame_glue_fns**) fp); -} - void rust_task::assert_is_running() { scoped_lock with(lifecycle_lock); |
