1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

all: experimental locked concurrency support, part 1 (#5637)

This commit is contained in:
Uwe Krüger
2020-07-04 12:44:25 +02:00
committed by GitHub
parent 27149ba8bc
commit 3b067f5f85
27 changed files with 510 additions and 51 deletions

View File

@ -10,7 +10,7 @@ mut:
}
pub fn (mut w Waiter) wait() {
w.mx.lock()
w.mx.m_lock()
}
pub fn (mut w Waiter) stop() {