diff options
author | Araq <rumpf_a@web.de> | 2011-08-20 00:24:02 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2011-08-20 00:24:02 +0200 |
commit | d560e84fcc1171164073a31797649c26a54b03e1 (patch) | |
tree | 3466a4c3b27b1bdf10f489c130632bb6eef17975 /tests/accept | |
parent | 5cba831c8848658d67b7a00e24d9696326b9bcc9 (diff) | |
download | Nim-d560e84fcc1171164073a31797649c26a54b03e1.tar.gz |
locks now in their own core module
Diffstat (limited to 'tests/accept')
-rwxr-xr-x | tests/accept/run/tnodeadlocks.nim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/accept/run/tnodeadlocks.nim b/tests/accept/run/tnodeadlocks.nim index 3235e84ee..18fdca3e9 100755 --- a/tests/accept/run/tnodeadlocks.nim +++ b/tests/accept/run/tnodeadlocks.nim @@ -3,10 +3,10 @@ discard """ cmd: "nimrod cc --hints:on --threads:on $# $#" """ -import os +import os, locks const - noDeadlocks = defined(system.deadlocksPrevented) + noDeadlocks = defined(preventDeadlocks) var thr: array [0..5, TThread[tuple[a, b: int]]] |