We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7ed495a commit 1ba1106Copy full SHA for 1ba1106
library/std/src/sys/pal/unix/stack_overflow.rs
@@ -608,8 +608,11 @@ mod imp {
608
pub type BOOL = i32;
609
610
extern "system" {
611
- pub fn AddVectoredExceptionHandler(first: u32, handler: PVECTORED_EXCEPTION_HANDLER) -> *mut core::ffi::c_void;
612
- pub fn SetThreadStackGuarantee(stacksizeinbytes : *mut u32) -> BOOL;
+ pub fn AddVectoredExceptionHandler(
+ first: u32,
613
+ handler: PVECTORED_EXCEPTION_HANDLER,
614
+ ) -> *mut core::ffi::c_void;
615
+ pub fn SetThreadStackGuarantee(stacksizeinbytes: *mut u32) -> BOOL;
616
}
617
618
pub const EXCEPTION_STACK_OVERFLOW: NTSTATUS = 0xC00000FD_u32 as _;
0 commit comments