commit | b555c4e6ee0d6af411876c61931e0e5b71bc6d5a | [log] [tgz] |
---|---|---|
author | William A. Kennington III <wak@google.com> | Tue Nov 13 14:31:47 2018 -0800 |
committer | William A. Kennington III <wak@google.com> | Fri Mar 29 14:18:57 2019 -0700 |
tree | 7bb5b77fd2dd24c37f65f4e6e357891fdee9cf14 | |
parent | e04cb03ba08f61f9d07e61764fee545c55f62f35 [diff] |
source/base: Remove unused ref constructor We don't ever use this constructor and it was effectively package private. Remove it as we don't ever need to add references to our sd_event_source*. Tested: Built and run through unit test suite. Change-Id: I1ca9fd4ecfdef1a3fd5aa2ca214be657c1a04b94 Signed-off-by: William A. Kennington III <wak@google.com>
sdeventplus is a c++ wrapper around the systemd sd_event apis meant to provide c++ ergonomics to their usage.
The sdeventplus library requires libsystemd for sd-event.
Test cases require google{test,mock}, valgrind, and lcov.
For a standard release build, you want something like:
./bootstrap.sh ./configure --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