2011-11-14 20:51:15 -06:00
|
|
|
// xfail-fast - Somehow causes check-fast to livelock?? Probably because we're
|
|
|
|
// calling pin_task and that's having wierd side-effects.
|
|
|
|
|
2011-11-16 22:49:38 -06:00
|
|
|
#[abi = "cdecl"]
|
|
|
|
#[link_name = "rustrt"]
|
2012-07-03 18:11:00 -05:00
|
|
|
extern mod rustrt1 {
|
2012-09-21 20:10:45 -05:00
|
|
|
#[legacy_exports];
|
2012-07-14 00:57:48 -05:00
|
|
|
fn last_os_error() -> ~str;
|
2011-11-14 10:32:31 -06:00
|
|
|
}
|
|
|
|
|
2011-11-16 22:49:38 -06:00
|
|
|
#[abi = "cdecl"]
|
|
|
|
#[link_name = "rustrt"]
|
2012-07-03 18:11:00 -05:00
|
|
|
extern mod rustrt2 {
|
2012-09-21 20:10:45 -05:00
|
|
|
#[legacy_exports];
|
2012-07-14 00:57:48 -05:00
|
|
|
fn last_os_error() -> ~str;
|
2011-11-14 10:32:31 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
2012-02-03 02:34:42 -06:00
|
|
|
rustrt1::last_os_error();
|
|
|
|
rustrt2::last_os_error();
|
2011-11-14 10:32:31 -06:00
|
|
|
}
|