Skip to content

Commit 247d5de

Browse files
committed
Emerald: Forgot to update eh_frame_address
This was fixed in 026a2392 in the main kernel code, but forgot to update here.
1 parent a5b1ddc commit 247d5de

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1212,7 +1212,7 @@ dependencies = [
12121212

12131213
[[package]]
12141214
name = "emerald_kernel_user_link"
1215-
version = "0.2.8"
1215+
version = "0.2.9"
12161216
dependencies = [
12171217
"compiler_builtins",
12181218
"rustc-std-workspace-core",

library/std/src/sys/pal/emerald/os.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ pub extern "C" fn _start(argc: isize, argv: *const *const u8) -> ! {
4747
#[cfg(feature = "panic_unwind")]
4848
unsafe {
4949
eh_unwinding::EH_FRAME_SETTINGS
50-
.init(emerald_std::process::process_metadata().eh_frame_adress);
50+
.init(emerald_std::process::process_metadata().eh_frame_address);
5151
unwind::set_custom_eh_frame_finder(&*addr_of!(eh_unwinding::EH_FRAME_SETTINGS)).ok();
5252
}
5353
exit(unsafe { main(argc, argv) });

0 commit comments

Comments
 (0)