fixes #6049 add mixin release, acquire to withLock (#6113)

This commit is contained in:
andri lim
2017-07-16 21:54:09 +07:00
committed by Andreas Rumpf
parent 4846ce0f41
commit 2ecdf582a8
3 changed files with 22 additions and 0 deletions

11
tests/stdlib/uselocks.nim Normal file
View File

@@ -0,0 +1,11 @@
import locks
type MyType* [T] = object
lock: Lock
proc createMyType*[T]: MyType[T] =
initLock(result.lock)
proc use* (m: var MyType): int =
withLock m.lock:
result = 3