From 6195dbe491ccd864c5dcb59f87826291ac1f1ff4 Mon Sep 17 00:00:00 2001 From: Araq Date: Mon, 12 May 2014 11:12:37 +0200 Subject: initial non-compiling version of 'parallel' --- tests/system/tsysspawn.nim | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'tests/system/tsysspawn.nim') diff --git a/tests/system/tsysspawn.nim b/tests/system/tsysspawn.nim index 0388918aa..fc7921b0e 100644 --- a/tests/system/tsysspawn.nim +++ b/tests/system/tsysspawn.nim @@ -4,20 +4,22 @@ discard """ cmd: "nimrod $target --threads:on $options $file" """ +import threadpool + var x, y = 0 proc p1 = - for i in 0 .. 1_000_000: + for i in 0 .. 10_000: discard - inc x + atomicInc x proc p2 = - for i in 0 .. 1_000_000: + for i in 0 .. 10_000: discard - inc y, 2 + atomicInc y, 2 for i in 0.. 3: spawn(p1()) -- cgit 1.4.1-2-gfad0