(code: u32)
| 596 | |
| 597 | #[cfg(windows)] |
| 598 | fn faulthandler_ignore_exception(code: u32) -> bool { |
| 599 | // bpo-30557: ignore exceptions which are not errors |
| 600 | if (code & 0x80000000) == 0 { |
| 601 | return true; |
| 602 | } |
| 603 | // bpo-31701: ignore MSC and COM exceptions |
| 604 | if code == 0xE06D7363 || code == 0xE0434352 { |
| 605 | return true; |
| 606 | } |
| 607 | false |
| 608 | } |
| 609 | |
| 610 | #[cfg(windows)] |
| 611 | unsafe extern "system" fn faulthandler_exc_handler( |
no outgoing calls
no test coverage detected