commit | cbaeb1a38314cb92bfa487659ae9225e28421091 | [log] [tgz] |
---|---|---|
author | William A. Kennington III <wak@google.com> | Thu Jun 20 12:58:46 2019 -0700 |
committer | William A. Kennington III <wak@google.com> | Mon Jul 08 16:26:42 2019 -0700 |
tree | e0fa4f233363aed850af44db69c7a05f0e3ba6dd | |
parent | 64725031be90808f918423527cd2a32627bdf285 [diff] |
handle: Make it possible to reference stored data Users of the handle often want to be able to reference data they plan to use in their callbacks. This is especially useful for retrieving references to dependency injected interfaces. Change-Id: I2782794d7d8320e3a0dd7f47320e35d75303167a Signed-off-by: William A. Kennington III <wak@google.com>
stdplus is a c++ project containing commonly used classes and functions for the Linux platform. Note the goals of this project are to implement only the minimum set of features needed by the OpenBMC project and other users. You may find the included set of functions currently quite sparse.
This project provides the following primitives:
Test cases require google{test,mock}, valgrind, and lcov.
For a standard release build, you want something like:
./bootstrap.sh ./configure --disable-examples --disable-tests make make install
For a test / debug build, a typical configuration is
./bootstrap.sh ./configure --enable-tests --enable-coverage --enable-valgrind make make check make check-valgrind make check-code-coverage