2022-07-17 20:54:10 -05:00
|
|
|
//@ignore-target-windows: No libc on Windows
|
2020-04-19 18:42:58 -05:00
|
|
|
|
|
|
|
// Joining a detached thread is undefined behavior.
|
|
|
|
|
|
|
|
use std::{mem, ptr};
|
|
|
|
|
|
|
|
extern "C" fn thread_start(_null: *mut libc::c_void) -> *mut libc::c_void {
|
|
|
|
ptr::null_mut()
|
|
|
|
}
|
|
|
|
|
|
|
|
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.
|
|
|
|
assert_eq!(libc::pthread_create(&mut native, &attr, thread_start, ptr::null_mut()), 0);
|
|
|
|
assert_eq!(libc::pthread_detach(native), 0);
|
2022-05-25 18:28:37 -05:00
|
|
|
assert_eq!(libc::pthread_join(native, ptr::null_mut()), 0); //~ ERROR: Undefined Behavior: trying to join a detached thread
|
2020-04-19 18:42:58 -05:00
|
|
|
}
|
|
|
|
}
|