rust/tests/fail/concurrency/unwind_top_of_stack.rs

30 lines
1.0 KiB
Rust
Raw Normal View History

2022-07-15 03:40:06 -05:00
//@ignore-target-windows: No libc on Windows
2022-05-25 18:28:37 -05:00
2022-07-08 11:08:32 -05:00
//@compile-flags: -Zmiri-disable-abi-check
//! Unwinding past the top frame of a stack is Undefined Behavior.
2022-08-17 20:58:10 -05:00
#![feature(c_unwind)]
use std::{mem, ptr};
2021-03-11 02:07:05 -06:00
extern "C-unwind" fn thread_start(_null: *mut libc::c_void) -> *mut libc::c_void {
//~^ ERROR: unwinding past the topmost frame of the stack
panic!()
}
fn main() {
unsafe {
let mut native: libc::pthread_t = mem::zeroed();
let attr: libc::pthread_attr_t = mem::zeroed();
// assert_eq!(libc::pthread_attr_init(&mut attr), 0); FIXME: this function is not yet implemented.
2021-03-11 02:07:05 -06:00
// Cast to avoid inserting abort-on-unwind.
let thread_start: extern "C-unwind" fn(*mut libc::c_void) -> *mut libc::c_void =
thread_start;
let thread_start: extern "C" fn(*mut libc::c_void) -> *mut libc::c_void =
mem::transmute(thread_start);
assert_eq!(libc::pthread_create(&mut native, &attr, thread_start, ptr::null_mut()), 0);
assert_eq!(libc::pthread_join(native, ptr::null_mut()), 0);
}
}