Browse Source

Fix name for ForcedUnwind

Gary Guo 2 years ago
parent
commit
9217c76d3d
2 changed files with 2 additions and 2 deletions
  1. 1 1
      src/abi.rs
  2. 1 1
      src/unwinder/mod.rs

+ 1 - 1
src/abi.rs

@@ -137,7 +137,7 @@ binding! {
     extern "C-unwind" fn _Unwind_RaiseException(
         exception: &mut UnwindException,
     ) -> UnwindReasonCode;
-    extern "C-unwind" fn _Unwind_ForceUnwind(
+    extern "C-unwind" fn _Unwind_ForcedUnwind(
         exception: &mut UnwindException,
         stop: UnwindStopFn,
         stop_arg: *mut c_void,

+ 1 - 1
src/unwinder/mod.rs

@@ -217,7 +217,7 @@ fn raise_exception_phase2(
 
 #[inline(never)]
 #[no_mangle]
-pub extern "C-unwind" fn _Unwind_ForceUnwind(
+pub extern "C-unwind" fn _Unwind_ForcedUnwind(
     exception: &mut UnwindException,
     stop: UnwindStopFn,
     stop_arg: *mut c_void,