Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/martinmoene/atomic-lite
atomic lite - a C++11 atomic operations library for C++98 and later
https://github.com/martinmoene/atomic-lite
Last synced: 2 months ago
JSON representation
atomic lite - a C++11 atomic operations library for C++98 and later
- Host: GitHub
- URL: https://github.com/martinmoene/atomic-lite
- Owner: martinmoene
- License: bsl-1.0
- Created: 2020-02-16T08:35:53.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2024-01-22T07:40:38.000Z (12 months ago)
- Last Synced: 2024-01-22T09:53:45.958Z (12 months ago)
- Language: C++
- Size: 59.6 KB
- Stars: 13
- Watchers: 5
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# atomic-lite
atomic lite - a C++11 atomic operations library for C++98 and later
[![Language](https://img.shields.io/badge/C%2B%2B-98/11/14/17-blue.svg)](https://en.wikipedia.org/wiki/C%2B%2B#Standardization) [![License](https://img.shields.io/badge/license-BSL-blue.svg)](https://opensource.org/licenses/BSL-1.0) [![Build Status](https://github.com/martinmoene/atomic-lite/actions/workflows/ci.yml/badge.svg)](https://github.com/martinmoene/atomic-lite/actions/workflows/ci.yml) [![Build status](https://ci.appveyor.com/api/projects/status/gpmw4gt271itoy2n?svg=true)](https://ci.appveyor.com/project/martinmoene/atomic-lite) [![Version](https://badge.fury.io/gh/martinmoene%2Fany-lite.svg)](https://github.com/martinmoene/atomic-lite/releases) [![download](https://img.shields.io/badge/latest-download-blue.svg)](https://raw.githubusercontent.com/martinmoene/atomic-lite/master/include/nonstd/atomic.hpp) [![Conan](https://img.shields.io/badge/on-conan-blue.svg)](https://bintray.com/martinmoene/nonstd-lite/atomic-lite%3Anonstd-lite/_latestVersion) [![Try it online](https://img.shields.io/badge/on-wandbox-blue.svg)](https://wandbox.org/permlink/GzoTkzwF7t5ncDg0) [![Try it on godbolt online](https://img.shields.io/badge/on-godbolt-blue.svg)](https://godbolt.org/z/vMueSf)
A Work in progress. Suggested by Peter Featherstone.
## Notes and References
[1] CppReference. [Atomic](http://en.cppreference.com/w/cpp/utility/atomic).
[x] ISO/IEC WG21. [C++ Atomic Types and Operations](https://wg21.link/n2145). January 2007.
[x] ISO/IEC WG21. [C++ Atomic Types and Operations](https://wg21.link/n2393). September 2007.
[x] ISO/IEC WG21. [P1135, The C++20 Synchronization Library](http://wg21.link/p1135). June 2018.
[x] H. Boehm. [Threads and memory model for C++](https://hboehm.info/c++mm/).