2013-05-20 19:07:24 -05:00
|
|
|
use std::unstable::run_in_bare_thread;
|
2013-01-11 20:32:46 -06:00
|
|
|
|
|
|
|
extern {
|
2013-05-15 16:10:42 -05:00
|
|
|
pub fn rust_dbg_call(cb: extern "C" fn(libc::uintptr_t)
|
|
|
|
-> libc::uintptr_t,
|
2013-01-11 20:32:46 -06:00
|
|
|
data: libc::uintptr_t) -> libc::uintptr_t;
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn main() {
|
|
|
|
unsafe {
|
|
|
|
do run_in_bare_thread() {
|
|
|
|
unsafe {
|
|
|
|
let i = &100;
|
|
|
|
rust_dbg_call(callback, cast::transmute(i));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
extern fn callback(data: libc::uintptr_t) {
|
|
|
|
unsafe {
|
|
|
|
let data: *int = cast::transmute(data);
|
2013-05-18 21:02:45 -05:00
|
|
|
assert_eq!(*data, 100);
|
2013-01-11 20:32:46 -06:00
|
|
|
}
|
2013-02-14 13:47:00 -06:00
|
|
|
}
|