tenox7 / ttyplot

a realtime plotting utility for terminal/console with data input from stdin

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

stdin closes on SIGWINCH on some systems

tenox7 opened this issue · comments

it's because of this:
9be5bea

likely scanf() gets interrupted by sigwinch and returns -1

likely check for EINTR or feof(stdin);

may be fixed, needs more testing

fixed by ignoring EINTR