0

简单代码:

#include <signal.h>
#include <stdio.h>
#include <unistd.h>
#include <iostream>

using namespaces td;                                                             
bool unblock = false;                                                  
long int ile = 0;                                                 

void ouch(int sig) {
    cout << "signal " <<  sig << endl;                               
    unblock = true;                                                  
}                                                                
int main(){                                                          
    struct sigaction act;                                           
    act.sa_handler = ouch;                                           
    sigemptyset(&act.sa_mask);                                  
    act.sa_flags = 0;                                             
    sigaction(SIGINT, &act, 0);                                    

    do {                                                         
        cout << "." << endl;                                         
    } while(!unblock);                                                          

    cout << "EXIT" << endl;                                          
}

现在我编译代码并得到“a.out”。当我像这样运行 a.out 时:

[przemek@localhost test]$ ./a,out

它按预期运行,当我按 CTRL+C 时,程序按需要退出但是当我像这样运行程序时(在我的项目中需要):

[przemek@localhost test]$ ./a.out&

操作系统将控制权传递给 shell,我无法通过 CTRL+C 中断循环

我需要在 bash 脚本中运行此代码,并且需要在后台运行它。在这种情况下是否有可能以某种方式捕捉信号?

4

1 回答 1

3

当您按下时,ctrl-c您将信号 2 (SIGINT) 发送到当前进程(在终端前台运行的进程)。您可以使用以下命令将信号发送到在后台运行的进程(以 & 开头)kill

$ kill -2 %%

当你说%%你的意思是最后一个后台进程。当然,您可以指定另一个。您需要知道它的 PID(参见 ps(1))或 JobID(bash(1)/jobs)。

我还想指出,您只能在带有作业管理的 shell 中使用 %-notation(例如 in bash)。当您不在这样的外壳中时,您只能使用 PID。

最后启动的进程的 PID 在$!. 这在某些脚本中可能很有用。

于 2012-06-18T14:21:38.693 回答