2020-06-28 04:31:34 -05:00
|
|
|
// ignore-windows: No libc on Windows
|
2021-07-25 07:08:12 -05:00
|
|
|
// error-pattern: the main thread terminated without waiting for all remaining threads
|
2020-04-19 18:42:58 -05:00
|
|
|
|
|
|
|
// Check that we terminate the program when the main thread terminates.
|
|
|
|
|
|
|
|
#![feature(rustc_private)]
|
|
|
|
|
|
|
|
extern crate libc;
|
|
|
|
|
|
|
|
use std::{mem, ptr};
|
|
|
|
|
|
|
|
extern "C" fn thread_start(_null: *mut libc::c_void) -> *mut libc::c_void {
|
2021-07-25 07:08:12 -05:00
|
|
|
loop {}
|
2020-04-19 18:42:58 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
}
|