Actually block in a windows cvar
Turns out with an argument of 0 the function always returns immediately! Closes #11003
This commit is contained in:
parent
aa5d779a35
commit
0da86ba48b
@ -1019,7 +1019,6 @@ mod test {
|
||||
})
|
||||
|
||||
#[test]
|
||||
#[ignore(cfg(windows))] // FIXME(#11003)
|
||||
fn send_from_outside_runtime() {
|
||||
let (p, c) = Chan::<int>::new();
|
||||
let (p1, c1) = Chan::new();
|
||||
@ -1044,7 +1043,6 @@ mod test {
|
||||
}
|
||||
|
||||
#[test]
|
||||
#[ignore(cfg(windows))] // FIXME(#11003)
|
||||
fn recv_from_outside_runtime() {
|
||||
let (p, c) = Chan::<int>::new();
|
||||
let (dp, dc) = Chan::new();
|
||||
@ -1061,7 +1059,6 @@ mod test {
|
||||
}
|
||||
|
||||
#[test]
|
||||
#[ignore(cfg(windows))] // FIXME(#11003)
|
||||
fn no_runtime() {
|
||||
let (p1, c1) = Chan::<int>::new();
|
||||
let (p2, c2) = Chan::<int>::new();
|
||||
|
@ -286,7 +286,7 @@ mod imp {
|
||||
|
||||
pub unsafe fn wait(cond: *c_void, m: *c_void) {
|
||||
unlock(m);
|
||||
WaitForSingleObject(cond as HANDLE, 0);
|
||||
WaitForSingleObject(cond as HANDLE, libc::INFINITE);
|
||||
lock(m);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user