fix sync_win.v

pull/1755/head
Alexander Medvednikov 2019-08-27 00:46:23 +03:00
parent 7edcbeca1a
commit ab0a78a498
1 changed files with 4 additions and 4 deletions

View File

@ -64,9 +64,9 @@ pub fn (m mut Mutex) lock() {
// m.cycle_wait++
// }
match state {
WAIT_FAILED => m.wstate = BROKEN
WAIT_ABANDONED => m.wstate = ABOND
WAIT_OBJECT_0 => m.wstate = WAIT & u32(0xff)
WAIT_FAILED => { m.wstate = BROKEN }
WAIT_ABANDONED => { m.wstate = ABOND }
WAIT_OBJECT_0 => { m.wstate = WAIT & u32(0xff) }
}
// todo implement atomic counter
}