Skip to content

Commit

Permalink
Fix aarch64 compile.
Browse files Browse the repository at this point in the history
  • Loading branch information
dbittman committed Aug 14, 2024
1 parent 5e5e713 commit 64f8cb7
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/lib/twizzler-abi/src/arch/aarch64/upcall.rs
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,18 @@ impl UpcallFrame {
pub fn bp(&self) -> usize {
self.fp as usize
}

/// Build a new frame set up to enter a context at a start point.
pub fn new_entry_frame(
stack_base: usize,
stack_size: usize,
tp: usize,
ctx: crate::object::ObjID,
entry: usize,
arg: usize,
) -> Self {
todo!()
}
}

#[no_mangle]
Expand Down

0 comments on commit 64f8cb7

Please sign in to comment.