libatomic_ops-1.2

Introduction to libatomic_ops

libatomic_ops provides implementations for atomic memory update operations on a number of architectures. This allows direct use of these in reasonably portable code. Unlike earlier similar packages, this one explicitly considers memory barrier semantics, and allows the construction of code that involves minimum overhead across a variety of architectures.

Package Information

User Notes: http://wiki.linuxfromscratch.org/blfs/wiki/libatomic_ops

Installation of libatomic_ops

Install libatomic_ops by running the following commands:

sed -i \
    's|datadir)/@PACKAGE@|datadir)/doc/@PACKAGE@/@PACKAGE_VERSION@|' \
    doc/Makefile.in &&
./configure --prefix=/usr &&
make

To check the results, issue make check.

Now, as the root user:

make install

Command Explanations

sed -i ... doc/Makefile.in: This command forces the documentation to be installed in a versioned directory.

Contents

Installed Programs: None
Installed Libraries: libatomic_ops.a and libatomic_ops_gpl.a
Installed Directory: /usr/include/libatomic_ops

Short Descriptions

libatomic_ops{,_gpl}.a

contains functions for atomic memory operations.

Last updated on 2010-11-09 02:16:04 +0000