diff options
Diffstat (limited to 'src/rt/rust_task.h')
| -rw-r--r-- | src/rt/rust_task.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/rt/rust_task.h b/src/rt/rust_task.h index 7d4ed221..9169a0b3 100644 --- a/src/rt/rust_task.h +++ b/src/rt/rust_task.h @@ -60,6 +60,14 @@ rust_task : public maybe_proxy<rust_task>, uintptr_t spawnee_fn, uintptr_t args, size_t callsz); + void start_rustboot(uintptr_t exit_task_glue, + uintptr_t spawnee_fn, + uintptr_t args, + size_t callsz); + void start_rustc(uintptr_t exit_task_glue, + uintptr_t spawnee_fn, + uintptr_t args, + size_t callsz); void grow(size_t n_frame_bytes); bool running(); bool blocked(); |