1 // ignore-windows: No libc on Windows
2 // error-pattern: the main thread terminated without waiting for all remaining threads
3 
4 // Check that we terminate the program when the main thread terminates.
5 
6 #![feature(rustc_private)]
7 
8 extern crate libc;
9 
10 use std::{mem, ptr};
11 
thread_start(_null: *mut libc::c_void) -> *mut libc::c_void12 extern "C" fn thread_start(_null: *mut libc::c_void) -> *mut libc::c_void {
13     loop {}
14 }
15 
main()16 fn main() {
17     unsafe {
18         let mut native: libc::pthread_t = mem::zeroed();
19         let attr: libc::pthread_attr_t = mem::zeroed();
20         // assert_eq!(libc::pthread_attr_init(&mut attr), 0); FIXME: this function is not yet implemented.
21         assert_eq!(libc::pthread_create(&mut native, &attr, thread_start, ptr::null_mut()), 0);
22     }
23 }
24