diff options
author | ringabout <43030857+ringabout@users.noreply.github.com> | 2022-10-30 00:11:40 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-29 18:11:40 +0200 |
commit | 1dab8ba334a1b53f3c8780bc8a4f8045a6ea0375 (patch) | |
tree | 070425aebd5603c0d852c64874b92505a865b74f /lib/pure/concurrency | |
parent | a51ed90c5ddc49d96dd96a16716f91fd543c518e (diff) | |
download | Nim-1dab8ba334a1b53f3c8780bc8a4f8045a6ea0375.tar.gz |
move threads out of system (#20674)
* move syslocks first * progress * clean up * go on * clean up * clean up * add imports syslocks * remove documentation * public deallocOsPages * fixes genode * fixes more * fixes boehmGC * cover more cases * fixes cyclic deps * fixes genode * cleanup * unpublic fields * cleanup * clean up
Diffstat (limited to 'lib/pure/concurrency')
-rw-r--r-- | lib/pure/concurrency/cpuinfo.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pure/concurrency/cpuinfo.nim b/lib/pure/concurrency/cpuinfo.nim index 16d32002d..1d2ff63e1 100644 --- a/lib/pure/concurrency/cpuinfo.nim +++ b/lib/pure/concurrency/cpuinfo.nim @@ -40,7 +40,7 @@ when defined(macosx) or defined(bsd): importc: "sysctl", nodecl.} when defined(genode): - include genode/env + import genode/env proc affinitySpaceTotal(env: GenodeEnvPtr): cuint {. importcpp: "@->cpu().affinity_space().total()".} |