in reply to Re: disable ctrl+c in my program
in thread disable ctrl+c in my program

Eh, no. SIGKILL is one of two signals you cannot ignore (the other is SIGSTOP). SIGKILL is what you get if you do kill -9 PID. ^C typically sends SIGINT. So, you would have to do SIG {INT} = 'IGNORE'.

Abigail