bindings: cxx: examples: use seconds for timeout in line.event_wait()
authorBartosz Golaszewski <bgolaszewski@baylibre.com>
Mon, 5 Aug 2019 19:33:27 +0000 (21:33 +0200)
committerBartosz Golaszewski <bgolaszewski@baylibre.com>
Mon, 5 Aug 2019 19:36:22 +0000 (21:36 +0200)
While the event_wait() method takes ::std::chrono::nanoseconds as the
timeout argument, we don't actually need to use the same type - we can
use less fine-grained duration types. Switch to using seconds in the
gpiomoncxx example to showcase this implicit conversion.

Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>
bindings/cxx/examples/gpiomoncxx.cpp

index c603d5db708c55d4da55a74e79d70fdd600a37cc..75bd715fdd2c1278471790ca272da670d6f411b0 100644 (file)
@@ -58,7 +58,7 @@ int main(int argc, char **argv)
        });
 
        for (;;) {
-               auto events = lines.event_wait(::std::chrono::nanoseconds(1000000000));
+               auto events = lines.event_wait(::std::chrono::seconds(1));
                if (events) {
                        for (auto& it: events)
                                print_event(it.event_read());