]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/extern-yield.rs
Auto merge of #22899 - huonw:macro-stability, r=alexcrichton
[rust.git] / src / test / run-pass / extern-yield.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 extern crate libc;
12 use std::thread::Thread;
13
14 mod rustrt {
15     extern crate libc;
16
17     #[link(name = "rust_test_helpers")]
18     extern {
19         pub fn rust_dbg_call(cb: extern "C" fn (libc::uintptr_t) -> libc::uintptr_t,
20                              data: libc::uintptr_t)
21                              -> libc::uintptr_t;
22     }
23 }
24
25 extern fn cb(data: libc::uintptr_t) -> libc::uintptr_t {
26     if data == 1 {
27         data
28     } else {
29         count(data - 1) + count(data - 1)
30     }
31 }
32
33 fn count(n: libc::uintptr_t) -> libc::uintptr_t {
34     unsafe {
35         Thread::yield_now();
36         rustrt::rust_dbg_call(cb, n)
37     }
38 }
39
40 pub fn main() {
41     (0..10_usize).map(|i| {
42         Thread::scoped(move|| {
43             let result = count(5);
44             println!("result = {}", result);
45             assert_eq!(result, 16);
46         })
47     }).collect::<Vec<_>>();
48 }