]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/foreign-call-no-runtime.rs
bd4c89eb8ab39edfc48cefb953635d30e08175d5
[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 extern crate libc;
12
13 use std::mem;
14 use std::rt::thread::Thread;
15
16 #[link(name = "rust_test_helpers")]
17 extern {
18     fn rust_dbg_call(cb: extern "C" fn(libc::uintptr_t),
19                      data: libc::uintptr_t) -> libc::uintptr_t;
20 }
21
22 pub fn main() {
23     unsafe {
24         Thread::start(proc() {
25             let i = &100;
26             rust_dbg_call(callback, mem::transmute(i));
27         }).join();
28     }
29 }
30
31 extern fn callback(data: libc::uintptr_t) {
32     unsafe {
33         let data: *int = mem::transmute(data);
34         assert_eq!(*data, 100);
35     }
36 }