GitHub - bdwgc/libatomic_ops: The atomic_ops project (Atomic memory update operations portable implementation) (original) (raw)

The atomic_ops library (libatomic_ops)

IN NEW CODE, PLEASE USE C11 OR C++14 STANDARD ATOMICS INSTEAD OF THE CORE LIBRARY IN THIS PACKAGE.

Travis-CI build status AppVeyor CI build status GitHub Actions build status Coverage Status Coverity Scan build status FOSSA Status OpenSSF Best Practices Hits-of-Code GitHub code size in bytes Github All Releases Packaging status

This is version 7.11.0 (next release development) of libatomic_ops.

License: MIT for core library / GPL-2.0 for gpl extension.

Download

You might find a more recent/stable version on theDownload page, orBDWGC site.

Also, the latest bug fixes and new features are available in thedevelopment repository.

Overview

This package provides semi-portable access to hardware-provided atomic memory update operations on a number of architectures. These might allow you to write code:

Please see other README files for the details:

Installation and Usage

The configuration and build scripts for this package were generated by Automake/Autoconf. ./configure; make; sudo make install in this directory should work. For a more customized build, see the output of./configure --help. To build it from the development repository,./autogen.sh should be executed first.

Alternatively, CMake could be use to build this package, e.g.cmake . && cmake --build . in this directory should work.

Note that much of the content of this library is in the header files. However, two small libraries are built and installed:

Platform Specific Notes

Win32/64: src/Makefile.msft contains a very simple Makefile for building and running tests and building the gpl library. The core libatomic_opsimplementation is entirely in header files (libatomic_ops.lib is built anyway to match that of the configure-based build process, but libatomic_ops.lib has only the implementation of the internal AO_pause() used by the gpl library). More information is provided in README_win32.txt file.

HP-UX/PA-RISC: aCC -Ae won't work as a C compiler, since it doesn't support inline assembly code. Use cc.

Feedback, Contribution, Questions and Notifications

Please address bug reports and new feature ideas toGitHub issues. Before the submission please check that it has not been done yet by someone else.

If you want to contribute, submit a pull request to GitHub.

If you need help, useStack Overflow. Older questions on the site can be found bythis query. Older technical discussions are also available in bdwgc mailing list archive - it can be downloaded as acompressed fileor browsed at Narkive (please search for atomic keyword).

To get new release announcements, subscribe toRSS feed. (To receive the notifications by email, a 3rd-party free service likeIFTTT RSS Feed can be setup.) To be notified on all issues, pleasewatch the project on GitHub.

Please be aware of the dual nature of the license of libatomic_ops:

The exact licensing information is provided in LICENSE file.

The library contributors are listed in AUTHORS file.