Hi,
I have this C++ framework that compiles across Win32 and Linux on x86/ARM/MIPS.. so far so good.
To be able to trap the user pressing CTRL+C I have installed following signal handlers that work fine under Linux on x86 and ARM (Raspberry) platforms.
signal(SIGINT, sigproc);
signal(SIGQUIT, quitproc);
Unfortunately these don't seem to work on OpenWRT/Omega
Anybody an idea which signals I should use?
thx