]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/foreign-call-no-runtime.rs
Rollup merge of #27934 - MatejLach:spacing_fix, r=steveklabnik
[rust.git] / src / test / run-pass / foreign-call-no-runtime.rs
1 // Copyright 2014 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 // ignore-aarch64
12 #![feature(libc)]
13
14 extern crate libc;
15
16 use std::mem;
17 use std::thread;
18
19 #[link(name = "rust_test_helpers")]
20 extern {
21     fn rust_dbg_call(cb: extern "C" fn(libc::uintptr_t),
22                      data: libc::uintptr_t) -> libc::uintptr_t;
23 }
24
25 pub fn main() {
26     unsafe {
27         thread::spawn(move|| {
28             let i: isize = 100;
29             rust_dbg_call(callback_isize, mem::transmute(&i));
30         }).join().unwrap();
31
32         thread::spawn(move|| {
33             let i: i32 = 100;
34             rust_dbg_call(callback_i32, mem::transmute(&i));
35         }).join().unwrap();
36
37         thread::spawn(move|| {
38             let i: i64 = 100;
39             rust_dbg_call(callback_i64, mem::transmute(&i));
40         }).join().unwrap();
41     }
42 }
43
44 extern fn callback_isize(data: libc::uintptr_t) {
45     unsafe {
46         let data: *const isize = mem::transmute(data);
47         assert_eq!(*data, 100);
48     }
49 }
50
51 extern fn callback_i64(data: libc::uintptr_t) {
52     unsafe {
53         let data: *const i64 = mem::transmute(data);
54         assert_eq!(*data, 100);
55     }
56 }
57
58 extern fn callback_i32(data: libc::uintptr_t) {
59     unsafe {
60         let data: *const i32 = mem::transmute(data);
61         assert_eq!(*data, 100);
62     }
63 }