2013-02-03 20:15:43 -06:00
|
|
|
// Copyright 2013 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.
|
|
|
|
|
|
|
|
use libc;
|
|
|
|
use ops::Drop;
|
|
|
|
|
|
|
|
#[allow(non_camel_case_types)] // runtime type
|
|
|
|
type raw_thread = libc::c_void;
|
|
|
|
|
2013-03-15 20:07:36 -05:00
|
|
|
pub struct Thread {
|
2013-02-03 20:15:43 -06:00
|
|
|
main: ~fn(),
|
2013-07-27 14:05:15 -05:00
|
|
|
raw_thread: *raw_thread,
|
|
|
|
joined: bool
|
2013-02-03 20:15:43 -06:00
|
|
|
}
|
|
|
|
|
2013-05-31 17:17:22 -05:00
|
|
|
impl Thread {
|
|
|
|
pub fn start(main: ~fn()) -> Thread {
|
2013-04-26 16:04:39 -05:00
|
|
|
fn substart(main: &~fn()) -> *raw_thread {
|
2013-08-14 20:41:40 -05:00
|
|
|
#[fixed_stack_segment]; #[inline(never)];
|
|
|
|
|
2013-04-26 16:04:39 -05:00
|
|
|
unsafe { rust_raw_thread_start(main) }
|
2013-02-03 20:15:43 -06:00
|
|
|
}
|
2013-04-26 16:04:39 -05:00
|
|
|
let raw = substart(&main);
|
2013-02-03 20:15:43 -06:00
|
|
|
Thread {
|
|
|
|
main: main,
|
2013-07-27 14:05:15 -05:00
|
|
|
raw_thread: raw,
|
|
|
|
joined: false
|
2013-02-03 20:15:43 -06:00
|
|
|
}
|
|
|
|
}
|
2013-07-27 14:05:15 -05:00
|
|
|
|
|
|
|
pub fn join(self) {
|
2013-08-14 20:41:40 -05:00
|
|
|
#[fixed_stack_segment]; #[inline(never)];
|
|
|
|
|
2013-07-27 14:05:15 -05:00
|
|
|
assert!(!self.joined);
|
|
|
|
let mut this = self;
|
|
|
|
unsafe { rust_raw_thread_join(this.raw_thread); }
|
|
|
|
this.joined = true;
|
|
|
|
}
|
2013-02-03 20:15:43 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Drop for Thread {
|
2013-06-20 20:06:13 -05:00
|
|
|
fn drop(&self) {
|
2013-08-14 20:41:40 -05:00
|
|
|
#[fixed_stack_segment]; #[inline(never)];
|
|
|
|
|
2013-07-27 14:05:15 -05:00
|
|
|
assert!(self.joined);
|
|
|
|
unsafe { rust_raw_thread_delete(self.raw_thread) }
|
2013-02-03 20:15:43 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
extern {
|
2013-08-02 16:30:00 -05:00
|
|
|
pub fn rust_raw_thread_start(f: &(~fn())) -> *raw_thread;
|
|
|
|
pub fn rust_raw_thread_join(thread: *raw_thread);
|
|
|
|
pub fn rust_raw_thread_delete(thread: *raw_thread);
|
2013-02-03 20:15:43 -06:00
|
|
|
}
|