2013-05-24 19:35:29 -07:00
|
|
|
use std::cast;
|
|
|
|
use std::libc;
|
2013-05-20 17:07:24 -07:00
|
|
|
use std::unstable::run_in_bare_thread;
|
2013-01-11 18:32:46 -08:00
|
|
|
|
|
|
|
extern {
|
2013-05-21 17:24:31 -07:00
|
|
|
pub fn rust_dbg_call(cb: *u8, data: libc::uintptr_t) -> libc::uintptr_t;
|
2013-01-11 18:32:46 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
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 22:02:45 -04:00
|
|
|
assert_eq!(*data, 100);
|
2013-01-11 18:32:46 -08:00
|
|
|
}
|
2013-02-14 11:47:00 -08:00
|
|
|
}
|