signal()
一部の OS では危険である可能性があり、Linux では推奨されておらず、sigaction()
が推奨されています . 「シグナル対サイガアクション」
これは、最近出くわした例 (「割り込み信号をタップする」) で、いじっていたときに修正したものです。
#include<stdio.h>
#include<unistd.h>
#include<signal.h>
#include<string.h>
struct sigaction old_action;
void sigint_handler(int sig_no)
{
printf("CTRL-C pressed\n");
sigaction(SIGINT, &old_action, NULL);
kill(0, SIGINT);
}
int main()
{
struct sigaction action;
memset(&action, 0, sizeof(action));
action.sa_handler = &sigint_handler;
sigaction(SIGINT, &action, &old_action);
pause();
return 0;
}
完全に機能する例については、次のコードを試すことができます:
#include <signal.h>
#include <stdio.h>
#include <stdbool.h>
volatile bool STOP = false;
void sigint_handler(int sig);
int main() {
signal(SIGINT, sigint_handler);
while(true) {
if (STOP) {
break;
}
}
return 0;
}
void sigint_handler(int sig) {
printf("\nCTRL-C detected\n");
STOP = true;
}
実行例:
[[email protected]]$ ./a.out
^C
CTRL-C detected
SIGINT をキャッチする必要があります。このようなもの:
void sigint_handler(int sig)
{
[do some cleanup]
signal(SIGINT, SIG_DFL);
kill(getpid(), SIGINT);
}
詳細はこちら