I use signal(SIGINT,my_handler) to point SIGINT to my_handler. After some time I want to reset it to whatever default handler it points to in general. How can I do that?
I use signal(SIGINT,my_handler) to point SIGINT to my_handler . After some time I want
Share
Pass
SIG_DFLas thefuncparameter tosignal()to reset default behaviour: