2022-07-17 20:54:10 -05:00
|
|
|
//@ignore-target-windows: Concurrency on Windows is not supported yet.
|
2021-03-14 09:38:22 -05:00
|
|
|
|
|
|
|
//! The thread function must have exactly one argument.
|
|
|
|
|
|
|
|
#![feature(rustc_private)]
|
|
|
|
|
|
|
|
use std::{mem, ptr};
|
|
|
|
|
|
|
|
extern "C" fn thread_start(_null: *mut libc::c_void, _x: i32) -> *mut libc::c_void {
|
2022-06-21 11:30:45 -05:00
|
|
|
panic!() //~ ERROR: callee has more arguments than expected
|
2021-03-14 09:38:22 -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.
|
|
|
|
let thread_start: extern "C" fn(*mut libc::c_void, i32) -> *mut libc::c_void = thread_start;
|
2022-06-19 22:33:59 -05:00
|
|
|
let thread_start: extern "C" fn(*mut libc::c_void) -> *mut libc::c_void =
|
|
|
|
mem::transmute(thread_start);
|
2021-03-14 09:38:22 -05:00
|
|
|
assert_eq!(libc::pthread_create(&mut native, &attr, thread_start, ptr::null_mut()), 0);
|
|
|
|
assert_eq!(libc::pthread_join(native, ptr::null_mut()), 0);
|
|
|
|
}
|
|
|
|
}
|