2012-12-10 19:32:48 -06:00
|
|
|
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// 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.
|
|
|
|
|
2013-05-24 21:35:29 -05:00
|
|
|
use std::task;
|
|
|
|
|
2013-02-01 21:43:17 -06:00
|
|
|
pub fn main() {
|
2013-05-06 21:29:04 -05:00
|
|
|
let mut builder = task::task();
|
2013-10-18 03:38:46 -05:00
|
|
|
let result = builder.future_result();
|
2013-05-06 21:29:04 -05:00
|
|
|
builder.spawn(child);
|
2013-10-21 15:08:31 -05:00
|
|
|
error!("1");
|
2013-08-16 14:49:40 -05:00
|
|
|
task::deschedule();
|
2013-10-21 15:08:31 -05:00
|
|
|
error!("2");
|
2013-08-16 14:49:40 -05:00
|
|
|
task::deschedule();
|
2013-10-21 15:08:31 -05:00
|
|
|
error!("3");
|
2013-10-18 03:38:46 -05:00
|
|
|
result.recv();
|
2010-06-23 23:03:09 -05:00
|
|
|
}
|
|
|
|
|
2012-01-04 23:14:53 -06:00
|
|
|
fn child() {
|
2013-10-21 15:08:31 -05:00
|
|
|
error!("4"); task::deschedule(); error!("5"); task::deschedule(); error!("6");
|
2011-10-13 17:37:07 -05:00
|
|
|
}
|