No description
Find a file
dependabot[bot] ee77a27eca
Bump actions/checkout from 4 to 5 (#83)
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v4...v5)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-version: '5'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-12 07:52:24 +02:00
.github Bump actions/checkout from 4 to 5 (#83) 2025-08-12 07:52:24 +02:00
tests Implement isUniqueRef to SharedPtr (#81) 2024-12-24 06:35:44 +01:00
threading Implement isUniqueRef to SharedPtr (#81) 2024-12-24 06:35:44 +01:00
.gitignore #55 add test binaries to gitignore 2024-01-10 17:29:43 +01:00
LICENSE Initial commit 2021-07-10 08:59:11 +02:00
readme.md channels: permit usage with --mm:atomicArc (#63) 2024-05-02 14:40:15 +02:00
threading.nimble Implement isUniqueRef to SharedPtr (#81) 2024-12-24 06:35:44 +01:00

threading

New threading primitives for Nim's arc/orc memory management modes: atomics, channels, smart pointers and wait groups.

Documentation

These modules require --threads:on, and one of the --mm:arc, --mm:orc or --mm:atomicArc compilation flags!

Documentation: https://nim-lang.github.io/threading

See tests/ for some usage examples.