240 私信
这个人很懒,暂无签名信息
0

linux shell脚本和应用程序中如何屏蔽ctrl+c信号

一、shell脚本中屏蔽ctrl+c信号 #!/bin/sh trap   SIGINT while true do     date     sleep 5 done 二、应用程序中屏蔽ctrl+c信号代码如下: //屏蔽Ctrl+C信号处理 static void mask_ctrl_c() {     sigset_t intmask;     sigemptyset(&intma...

个人介绍
暂无介绍