From 511111defa982ce3d2926ab2c20fff43a5eede1d Mon Sep 17 00:00:00 2001 From: Araq Date: Sat, 8 Nov 2014 11:19:15 +0100 Subject: [PATCH] TAtomType includes 'bool' --- lib/system/atomics.nim | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/system/atomics.nim b/lib/system/atomics.nim index 5e5c72fae5..f816c82019 100644 --- a/lib/system/atomics.nim +++ b/lib/system/atomics.nim @@ -37,7 +37,7 @@ when someGcc and hasThreadSupport: ## and release stores in all threads. type - TAtomType* = TNumber|pointer|ptr|char + TAtomType* = SomeNumber|pointer|ptr|char|bool ## Type Class representing valid types for use with atomic procs proc atomicLoadN*[T: TAtomType](p: ptr T, mem: AtomMemModel): T {. @@ -204,16 +204,16 @@ else: when (defined(x86) or defined(amd64)) and someGcc: - proc cpuRelax {.inline.} = + proc cpuRelax* {.inline.} = {.emit: """asm volatile("pause" ::: "memory");""".} elif (defined(x86) or defined(amd64)) and defined(vcc): - proc cpuRelax {.importc: "YieldProcessor", header: "".} + proc cpuRelax* {.importc: "YieldProcessor", header: "".} elif defined(icl): - proc cpuRelax {.importc: "_mm_pause", header: "xmmintrin.h".} + proc cpuRelax* {.importc: "_mm_pause", header: "xmmintrin.h".} elif false: from os import sleep - proc cpuRelax {.inline.} = os.sleep(1) + proc cpuRelax* {.inline.} = os.sleep(1) when not declared(fence) and hasThreadSupport: # XXX fixme