2014-02-07 20:08:32 +01:00
|
|
|
// Copyright 2012-2014 The Rust Project Developers. See the COPYRIGHT
|
2012-12-10 17:32:48 -08:00
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2011-11-14 18:51:15 -08:00
|
|
|
// calling pin_task and that's having wierd side-effects.
|
|
|
|
|
2013-03-05 14:42:58 -08:00
|
|
|
mod rustrt1 {
|
2014-02-26 12:58:41 -05:00
|
|
|
extern crate libc;
|
2013-05-24 19:35:29 -07:00
|
|
|
|
2013-11-16 02:02:07 -08:00
|
|
|
#[link(name = "rustrt")]
|
2013-10-14 14:33:05 +02:00
|
|
|
extern {
|
2013-10-05 14:44:37 -07:00
|
|
|
pub fn rust_get_test_int() -> libc::intptr_t;
|
2013-03-05 14:42:58 -08:00
|
|
|
}
|
2011-11-15 00:32:31 +08:00
|
|
|
}
|
|
|
|
|
2013-03-05 14:42:58 -08:00
|
|
|
mod rustrt2 {
|
2014-02-26 12:58:41 -05:00
|
|
|
extern crate libc;
|
2013-05-24 19:35:29 -07:00
|
|
|
|
2013-11-16 02:02:07 -08:00
|
|
|
#[link(name = "rustrt")]
|
2013-10-14 14:33:05 +02:00
|
|
|
extern {
|
2013-10-05 14:44:37 -07:00
|
|
|
pub fn rust_get_test_int() -> libc::intptr_t;
|
2013-03-05 14:42:58 -08:00
|
|
|
}
|
2011-11-15 00:32:31 +08:00
|
|
|
}
|
|
|
|
|
2013-02-01 19:43:17 -08:00
|
|
|
pub fn main() {
|
2013-01-23 16:29:31 -08:00
|
|
|
unsafe {
|
2013-07-30 20:58:55 -07:00
|
|
|
rustrt1::rust_get_test_int();
|
|
|
|
rustrt2::rust_get_test_int();
|
2013-01-23 16:29:31 -08:00
|
|
|
}
|
2011-11-15 00:32:31 +08:00
|
|
|
}
|