gpiomon: add option to set line buffered output
authorMartin Hundebøll <martin@geanix.com>
Mon, 25 Feb 2019 09:43:07 +0000 (10:43 +0100)
committerBartosz Golaszewski <bgolaszewski@baylibre.com>
Mon, 25 Feb 2019 09:43:07 +0000 (10:43 +0100)
commit63d5f02a5c74c70ef5131cb1c02722f09afd95cf
treefa1c3df5f092abb36d3cffa9e418093d3eeefae8
parent04f566d5bde8a6d9b2c22bb72dc432e1a2aabbfa
gpiomon: add option to set line buffered output

Some applications call gpiomon in a sub process, in which case glibc
defaults to block buffered output on stdout. This makes the output
arrive to the calling process only when the (4kB) buffer is filled (or
when gpiomon exists), making the information obsolete and pretty much
useless.

Support such scenarios by adding a switch to configure line buffered
output on stdout. Similar switches are available in other applications
(e.g. `rsync`s --output argument).

Signed-off-by: Martin Hundebøll <martin@geanix.com>
[Bartosz:
  - use setlinebuf() instead of setvbuf(),
  - tweak the help string,
  - move the setlinebuf() call directly into the optarg switch statement]
Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>
src/tools/gpiomon.c