浏览代码

Swap usage of drop_panic and foreign_exception

Nick Spinale 2 年之前
父节点
当前提交
fe407b61e1
共有 1 个文件被更改,包括 6 次插入6 次删除
  1. 6 6
      src/panic.rs

+ 6 - 6
src/panic.rs

@@ -8,15 +8,15 @@ pub use crate::panic_handler::*;
 use crate::panicking::Exception;
 
 #[repr(transparent)]
-struct RustPanic(Box<dyn Any + Send>, ForeignGuard);
+struct RustPanic(Box<dyn Any + Send>, DropGuard);
 
-struct ForeignGuard;
+struct DropGuard;
 
-impl Drop for ForeignGuard {
+impl Drop for DropGuard {
     fn drop(&mut self) {
         #[cfg(feature = "panic-handler")]
         {
-            foreign_exception();
+            drop_panic();
         }
         core::intrinsics::abort();
     }
@@ -45,7 +45,7 @@ unsafe impl Exception for RustPanic {
 }
 
 pub fn begin_panic(payload: Box<dyn Any + Send>) -> UnwindReasonCode {
-    crate::panicking::begin_panic(RustPanic(payload, ForeignGuard))
+    crate::panicking::begin_panic(RustPanic(payload, DropGuard))
 }
 
 pub fn catch_unwind<R, F: FnOnce() -> R>(f: F) -> Result<R, Box<dyn Any + Send>> {
@@ -55,7 +55,7 @@ pub fn catch_unwind<R, F: FnOnce() -> R>(f: F) -> Result<R, Box<dyn Any + Send>>
             None => {
                 #[cfg(feature = "panic-handler")]
                 {
-                    drop_panic();
+                    foreign_exception();
                 }
                 core::intrinsics::abort();
             }