]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/extern-call-scrub.rs
cleanup: s/impl Copy/#[derive(Copy)]/g
[rust.git] / src / test / run-pass / extern-call-scrub.rs
1 // Copyright 2012 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 // This time we're testing repeatedly going up and down both stacks to
12 // make sure the stack pointers are maintained properly in both
13 // directions
14
15 extern crate libc;
16 use std::thread::Thread;
17
18 mod rustrt {
19     extern crate libc;
20
21     #[link(name = "rust_test_helpers")]
22     extern {
23         pub fn rust_dbg_call(cb: extern "C" fn(libc::uintptr_t) -> libc::uintptr_t,
24                              data: libc::uintptr_t)
25                              -> libc::uintptr_t;
26     }
27 }
28
29 extern fn cb(data: libc::uintptr_t) -> libc::uintptr_t {
30     if data == 1 {
31         data
32     } else {
33         count(data - 1) + count(data - 1)
34     }
35 }
36
37 fn count(n: libc::uintptr_t) -> libc::uintptr_t {
38     unsafe {
39         println!("n = {}", n);
40         rustrt::rust_dbg_call(cb, n)
41     }
42 }
43
44 pub fn main() {
45     // Make sure we're on a task with small Rust stacks (main currently
46     // has a large stack)
47     let _t = Thread::spawn(move|| {
48         let result = count(12);
49         println!("result = {}", result);
50         assert_eq!(result, 2048);
51     });
52 }