summaryrefslogtreecommitdiffstats
path: root/tach_detect.cpp
blob: 9b2ccd14402b4238e07a11817291d09e9fd71787 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <vector>
#include <sdbusplus/bus.hpp>

int main(void)
{
    auto bus = sdbusplus::bus::new_default();

    while (true)
    {
        // Respond to dbus signals
        bus.process_discard();
        bus.wait();
    }
    return 0;
}
OpenPOWER on IntegriCloud