MCPcopy Index your code
hub / github.com/RustPython/RustPython / _sigabrt

Function _sigabrt

crates/stdlib/src/faulthandler.rs:1225–1234  ·  view source on GitHub ↗
(_vm: &VirtualMachine)

Source from the content-addressed store, hash-verified

1223
1224 #[pyfunction]
1225 fn _sigabrt(_vm: &VirtualMachine) {
1226 #[cfg(not(target_arch = "wasm32"))]
1227 {
1228 suppress_crash_report();
1229
1230 unsafe {
1231 libc::abort();
1232 }
1233 }
1234 }
1235
1236 #[pyfunction]
1237 fn _sigfpe(_vm: &VirtualMachine) {

Callers

nothing calls this directly

Calls 2

suppress_crash_reportFunction · 0.85
abortFunction · 0.50

Tested by

no test coverage detected