加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
mytest.cc 322 Bytes
一键复制 编辑 原始数据 按行查看 历史
平剑波 提交于 2023-10-21 21:08 . 共享内存博客用
#include<iostram>
#include<unistd.h>
#include<sys/types.h>
void handler(int signo)
{
std::cout <<"进程拿到一个信号 ,信号编号:" << signo <<std::endl;
}
int main()
{
singnal(2,handler);
while(true)
{
std::cout << "我是一个进程: " << getpid() << std::endl;
}
return 0;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化