]> git.proxmox.com Git - rustc.git/blame - src/libstd/sys/windows/condvar.rs
Imported Upstream version 1.1.0+dfsg1
[rustc.git] / src / libstd / sys / windows / condvar.rs
CommitLineData
1a4d82fc
JJ
1// Copyright 2014 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
c34b1796
AL
11use prelude::v1::*;
12
1a4d82fc
JJ
13use cell::UnsafeCell;
14use libc::{self, DWORD};
c34b1796 15use sys::os;
1a4d82fc
JJ
16use sys::mutex::{self, Mutex};
17use sys::sync as ffi;
18use time::Duration;
19
20pub struct Condvar { inner: UnsafeCell<ffi::CONDITION_VARIABLE> }
21
c34b1796
AL
22unsafe impl Send for Condvar {}
23unsafe impl Sync for Condvar {}
24
1a4d82fc
JJ
25pub const CONDVAR_INIT: Condvar = Condvar {
26 inner: UnsafeCell { value: ffi::CONDITION_VARIABLE_INIT }
27};
28
29impl Condvar {
30 #[inline]
31 pub unsafe fn new() -> Condvar { CONDVAR_INIT }
32
33 #[inline]
34 pub unsafe fn wait(&self, mutex: &Mutex) {
85aaf69f
SL
35 let r = ffi::SleepConditionVariableSRW(self.inner.get(),
36 mutex::raw(mutex),
37 libc::INFINITE,
38 0);
1a4d82fc
JJ
39 debug_assert!(r != 0);
40 }
41
42 pub unsafe fn wait_timeout(&self, mutex: &Mutex, dur: Duration) -> bool {
85aaf69f
SL
43 let r = ffi::SleepConditionVariableSRW(self.inner.get(),
44 mutex::raw(mutex),
d9579d0f 45 super::dur2timeout(dur),
85aaf69f 46 0);
1a4d82fc
JJ
47 if r == 0 {
48 const ERROR_TIMEOUT: DWORD = 0x5B4;
c34b1796 49 debug_assert_eq!(os::errno() as usize, ERROR_TIMEOUT as usize);
1a4d82fc
JJ
50 false
51 } else {
52 true
53 }
54 }
55
56 #[inline]
57 pub unsafe fn notify_one(&self) {
58 ffi::WakeConditionVariable(self.inner.get())
59 }
60
61 #[inline]
62 pub unsafe fn notify_all(&self) {
63 ffi::WakeAllConditionVariable(self.inner.get())
64 }
65
66 pub unsafe fn destroy(&self) {
67 // ...
68 }
69}