commit | 8efeaa303bbb3fcc197093fd92686c78946819d6 | [log] [tgz] |
---|---|---|
author | Jerry Zhu <jzhu379@gmail.com> | Tue Aug 10 14:54:00 2021 +0000 |
committer | William A. Kennington III <wak@google.com> | Thu Aug 19 05:27:52 2021 +0000 |
tree | e8676cfd76b7fe6d509d3840961518088adc8b20 | |
parent | abc6be75b199733a4c1aaba939ee61eb25b4af6c [diff] |
io_uring params and polling added Added new functionality to io_uring wrapper - specifically for processing additional params in the constructor and supporting polling files. Main purpose is to support the io_uring usage in cached reads for phosphor-hwmon. Signed-off-by: Jerry Zhu <jzhu379@gmail.com> Change-Id: I782972c75d642e1e91729b836f6a3bb18fd428bd
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