Ver Fonte

Make UnwindTraceFn take `&UnwindContext` only

Gary Guo há 1 ano atrás
pai
commit
f5ef1d145e
3 ficheiros alterados com 3 adições e 3 exclusões
  1. 1 1
      src/abi.rs
  2. 1 1
      src/panic_handler.rs
  3. 1 1
      src/unwinder/mod.rs

+ 1 - 1
src/abi.rs

@@ -78,7 +78,7 @@ pub struct UnwindException {
 }
 
 pub type UnwindTraceFn =
-    extern "C" fn(ctx: &mut UnwindContext<'_>, arg: *mut c_void) -> UnwindReasonCode;
+    extern "C" fn(ctx: &UnwindContext<'_>, arg: *mut c_void) -> UnwindReasonCode;
 
 #[cfg(not(feature = "unwinder"))]
 #[repr(C)]

+ 1 - 1
src/panic_handler.rs

@@ -60,7 +60,7 @@ fn stack_trace() {
         counter: usize,
     }
     extern "C" fn callback(
-        unwind_ctx: &mut UnwindContext<'_>,
+        unwind_ctx: &UnwindContext<'_>,
         arg: *mut c_void,
     ) -> UnwindReasonCode {
         let data = unsafe { &mut *(arg as *mut CallbackData) };

+ 1 - 1
src/unwinder/mod.rs

@@ -390,7 +390,7 @@ pub extern "C-unwind" fn _Unwind_Backtrace(
             let frame = try1!(Frame::from_context(&ctx, signal));
             if !skipping {
                 let code = trace(
-                    &mut UnwindContext {
+                    &UnwindContext {
                         frame: frame.as_ref(),
                         ctx: &mut ctx,
                         signal,