diff options
author | Zahary Karadjov <zahary@gmail.com> | 2011-12-13 22:49:06 +0200 |
---|---|---|
committer | Zahary Karadjov <zahary@gmail.com> | 2011-12-13 22:52:13 +0200 |
commit | 841d6b6aa991785d046e1070f8bfa86a5b113555 (patch) | |
tree | c97b31aa90a79be98c74eecde92058fd67869ece /lib/core/locks.nim | |
parent | f19c1c0f6e93a561dc13ef57d136957edeba9ed4 (diff) | |
download | Nim-841d6b6aa991785d046e1070f8bfa86a5b113555.tar.gz |
fixed some recently introduced compilation errors in the standard library
Diffstat (limited to 'lib/core/locks.nim')
-rw-r--r-- | lib/core/locks.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/core/locks.nim b/lib/core/locks.nim index 6f139c7a2..6de22ee72 100644 --- a/lib/core/locks.nim +++ b/lib/core/locks.nim @@ -15,7 +15,7 @@ ## to release its locks should it be part of a deadlock. This thread then ## re-acquires its locks and proceeds. -include "lib/system/syslocks" +include "system/syslocks" type TLock* = TSysLock ## Nimrod lock; whether this is re-entrant |