commit | 04885c504e21fc124cce8296d92603fc94259183 | [log] [tgz] |
---|---|---|
author | William A. Kennington III <wak@google.com> | Sun Dec 17 23:13:05 2023 -0800 |
committer | William A. Kennington III <wak@google.com> | Sun Dec 24 14:47:21 2023 -0800 |
tree | 8c8cebd06765c7fb8ef7038405e5f019e45ac186 | |
parent | b88c45769258aa7efce217d2846f12999bad469a [diff] |
fd/ops: Remove bad accept function This should be returning the address in the rvalue, not as any type of reference. Change-Id: I288b11cfe7de5713f9fd4ec52ef03f325267b2b8 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. It also requires the Meson Build System which can be installed following the instructions at mesonbuild.com.
For a standard release build, you want something like:
meson setup -Dexamples=false -Dtests=disabled builddir ninja -C builddir ninja -C builddir install
For a test / debug build, a typical configuration is
meson setup -Dtests=enabled builddir meson test -C builddir