我的情况很简单:我希望我的 C++ 程序能够处理 Unix 信号。为此,glibc 在 signal.h 中提供了一个名为 的函数sigaction
,该函数期望接收一个函数指针作为其第二个参数。
extern "C"
{
void uponSignal(int);
}
void uponSignal(int)
{
// set some flag to quit the program
}
static
void installSignalHandler()
{
// initialize the signal handler
static struct sigaction sighandler;
memset( &sighandler, 0, sizeof(struct sigaction) );
sighandler.sa_handler = uponSignal;
// install it
sigaction( SIGINT, &sighandler, nullptr );
}
我的问题是:extern "C"
链接说明符是否必要?
奖励问题:可以声明 onSignalstatic
吗?