commit | e68f5b5171fffc053fefc7e9824e76ccf506426e | [log] [tgz] |
---|---|---|
author | William A. Kennington III <wak@google.com> | Sat Mar 23 02:49:28 2019 -0700 |
committer | William A. Kennington III <wak@google.com> | Wed Jun 03 13:44:27 2020 -0700 |
tree | eab3d9495b0842547da7f57f19d55300dad14421 | |
parent | 9412219317e8949fd23f5c29e550a57611e0ad3d [diff] |
event: Add non-owning constructor This allows internal store event objects without having to contain circular references. A circular reference in an event source will cause the event loop from ever cleaning up correctly. Change-Id: I23fe0c95093953071216cf1deeb17e79defb7ffb 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 a libsystemd development package on the system for sd-event.
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