I’m starting my program in background (./my_app &);
it is on jobs list.
When I set my program to foreground (fg %1)
a SIGCONT signal arrives
and I try to reinit screen & keyboard (using ncurses).
Output works ok (always, even app is in bkgnd),
but I cannot get control over input.
Is it possible to get control over terminal input again?
/after process returned to foregorund;