core::rt: Add SleeperList
Just a simple place to stuff handles to sleeping schedulers.
This commit is contained in:
parent
3f8095e550
commit
dec9db10da
2 changed files with 49 additions and 0 deletions
|
|
@ -88,6 +88,9 @@ mod work_queue;
|
|||
/// A parallel queue.
|
||||
mod message_queue;
|
||||
|
||||
/// A parallel data structure for tracking sleeping schedulers.
|
||||
mod sleeper_list;
|
||||
|
||||
/// Stack segments and caching.
|
||||
mod stack;
|
||||
|
||||
|
|
|
|||
46
src/libcore/rt/sleeper_list.rs
Normal file
46
src/libcore/rt/sleeper_list.rs
Normal file
|
|
@ -0,0 +1,46 @@
|
|||
// 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.
|
||||
|
||||
//! Maintains a shared list of sleeping schedulers. Schedulers
|
||||
//! use this to wake each other up.
|
||||
|
||||
use container::Container;
|
||||
use vec::OwnedVector;
|
||||
use option::{Option, Some, None};
|
||||
use cell::Cell;
|
||||
use unstable::sync::{Exclusive, exclusive};
|
||||
use rt::sched::{Scheduler, SchedHandle};
|
||||
|
||||
pub struct SleeperList {
|
||||
priv stack: ~Exclusive<~[SchedHandle]>
|
||||
}
|
||||
|
||||
impl SleeperList {
|
||||
pub fn new() -> SleeperList {
|
||||
SleeperList {
|
||||
stack: ~exclusive(~[])
|
||||
}
|
||||
}
|
||||
|
||||
pub fn push(&mut self, handle: SchedHandle) {
|
||||
let handle = Cell(handle);
|
||||
self.stack.with(|s| s.push(handle.take()));
|
||||
}
|
||||
|
||||
pub fn pop(&mut self) -> Option<SchedHandle> {
|
||||
do self.stack.with |s| {
|
||||
if !s.is_empty() {
|
||||
Some(s.pop())
|
||||
} else {
|
||||
None
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue