sigaction函数相对于siganl函数控制信号的发送要更加精确一些,其函数原型为:

int sigaction(int signum, const struct sigaction *act, struct sigaction *oldact);

实验代码:

#include <signal.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h> /* 信号处理函数:信号量,发送者传递的额外信息,参数 */
void func_handler(int signum, siginfo_t *info, void *arg)
{
printf("/nget the signal. pid : %d, uid : %d\n", info->si_pid, info->si_uid);
printf("sival_int : %d\n", (int)arg);
/* printf("si_signo : %d, si_code : %d, si_errno : %d\n", info->si_signo, info->si_code, info->si_errno); */
printf("si_status : %d\n", info->si_status);
/* printf("si_utime : %d, si_stime : %d\n", info->si_utime, info->si_stime); */
printf("signal from address : 0x%x\n", info->si_addr);
printf("--------++++++++--------\n");
} int main(int argc, char *argv[])
{
struct sigaction signal_action;
/* initializes the signal set given by set to empty, with all signals excluded from the set */
/* 初始化sigaction */
sigemptyset(&signal_action.sa_mask); signal_action.sa_sigaction = func_handler; /* 设置信号处理函数 */
/* 设置标志位 */
/* SA_SIGINFO:信号发送者会提供额外的信息(siginfo_t),信号处理函数应该使用三参数(int,siginfo_t *,void *) */
/* SA_RESTART:如果系统调用被信号中断,则不返回错误,而是自动重启系统调用(重入机制) */
signal_action.sa_flags |= SA_SIGINFO | SA_RESTART; /* The sigaction(int, const struct sigaction *new, struct sigaction *old) system call is used to change the action taken by a process on receipt of a specific signal */
/* 修改信号的处理函数 */
if(sigaction(SIGINT, &signal_action, NULL) == -1)
{
printf("sigaction failed, app exit. error : %s!\n", strerror(errno));
exit(1);
}
while(1)
{
/* 暂停进程,或注释掉该行代码 */
pause();
}
printf("done!\n"); return 0;
}

运行程序后,使用命令:ps -au查看该程序的进程编号

使用sigqueue函数向指定进程发送指定信号,实验代码:

#include <signal.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h> int main(int argc, char *argv[])
{
union sigval arg;
arg.sival_int = 2017; /* sigqueue指定的整型参数 */
int pid = atoi(argv[1]); /* 指定一个进程编号 */
int sig = atoi(argv[2]); /* 指定一个信号 */ printf("pid : %d, sig : %d\n", pid, sig); /* 检测该进程是否存在 */
if(sigqueue(pid, 0, arg) != 0)
{
printf("no process's pid : %d, app exit!\n", pid);
exit(-1);
}
printf("check process succeed!\n"); int times = 0;
for(;times<3;times++)
{
printf("sending a signal : [%d] to process : [%d].\n", sig, pid);
if(sigqueue(pid, sig, arg) == -1)
{
printf("sigqueue failed, app exit. err : %s!\n", strerror(errno));
exit(-1);
}
printf("times : %d, sigqueue success, sleep 2 second!\n", times + 1);
sleep(2);
} return 0;
}

使用命令./sigqueue 32499 2, 意思是对进程32499进程发送SIGINT(2)信号

sigqueue进程每隔2秒发送一个SIGINT信号,sigaction进程就显示了信号发送者的额外信息.

当然,也可以通过kill命令向指定的进程发送指定的信号,比如

sigaction和sigqueue的更多相关文章

  1. Linux 改进捕捉信号机制(sigaction,sigqueue)

    sigaction函数 sigaction函数的功能是用于改变进程接收到特定信号后的行为. int sigaction(int signum, const struct sigaction *act, ...

  2. linux中高级信号函数sigaction和sigqueue实例

    /************************************************************************* > File Name: sigquque. ...

  3. Linux 系统编程 学习:03-进程间通信1:Unix IPC(2)信号

    Linux 系统编程 学习:03-进程间通信1:Unix IPC(2)信号 背景 上一讲我们介绍了Unix IPC中的2种管道. 回顾一下上一讲的介绍,IPC的方式通常有: Unix IPC包括:管道 ...

  4. linux系统编程之信号(六):信号发送函数sigqueue和信号安装函数sigaction

    一,sigaction() #include <signal.h> int sigaction(int signum,const struct sigaction *act,struct ...

  5. linux系统编程之信号:信号发送函数sigqueue和信号安装函数sigaction

    信号发送函数sigqueue和信号安装函数sigaction sigaction函数用于改变进程接收到特定信号后的行为. sigqueue()是比较新的发送信号系统调用,主要是针对实时信号提出的(当然 ...

  6. sigaction和实时信号sigqueue

    sigaction函数sigaction函数的功能是用于改变进程接收到特定信号后的行为.int sigaction(int signum, const struct sigaction *act,st ...

  7. 信号发送接收函数:sigqueue/sigaction

    信号是一种古老的进程间通信方式,下面的例子利用sigqueue发送信号并附带数据:sigaction函数接受信号并且处理时接受数据. 1.sigqueue: 新的信号发送函数,比kill()函数传递了 ...

  8. linux下的struct sigaction

    工作中使用案例: struct sigaction act; act.sa_sigaction = handleSignal; act.sa_flags = SA_SIGINFO; sigemptys ...

  9. signal函数、sigaction函数及信号集(sigemptyset,sigaddset)操作函数

    信号是与一定的进程相联系的.也就是说,一个进程可以决定在进程中对哪些信号进行什 么样的处理.例如,一个进程可以忽略某些信号而只处理其他一些信号:另外,一个进程还可以选择如何处理信号.总之,这些总与特定 ...

随机推荐

  1. c++ is_space函数

    C库函数int isspace(int c)检查传递的字符是否是空白. 标准空白字符: ' ' (0x20) space (SPC) ' ' (0x09) horizontal tab (TAB) ' ...

  2. MongoDB使用锦集

    查询集合中记录数量:db.collection.count()

  3. 小程序 web 端实时运行工具

    微信小程序 web 端实时运行工具 https://chemzqm.github.io/wept/

  4. 如何把excel 数据做dataprovide

    1.  新建一个类,实现接口Iterator import java.io.FileInputStream; import java.io.FileNotFoundException; import ...

  5. 自己建二维obj

    经常用到啊 在项目流程管理里面用到

  6. css学习笔记 7

    background-position属性值为百分比的时候,第一个百分比表示水平方向的距离,第二个表示垂直方向上的距离. text-indent的主要作用是为段落设置首行缩进,只能应用于块级元素.该属 ...

  7. Linux中Screen命令使用方法

    一.使用Screen创建一个Session screen -S sessionName 注:sessionName是要删除的session名字 二.结束一个Screen创建的session 1.首先使 ...

  8. JS数组方法汇总 array数组元素的添加和删除

    js数组元素的添加和删除一直比较迷惑,今天终于找到详细说明的资料了,先给个我测试的代码^-^ var arr = new Array(); arr[0] = "aaa"; arr[ ...

  9. 读javascript高级程序设计00-目录

    javascript高级编程读书笔记系列,也是本砖头书.感觉js是一种很好上手的语言,不过本书细细读来发现了很多之前不了解的细节,受益良多.<br/>本笔记是为了方便日后查阅,仅作学习交流 ...

  10. checkbox设置单选

    http://blog.sina.com.cn/s/blog_4550f3ca010137td.html $("*")  ‘表示获取所有对象   $("#XXX" ...