1 Star 0 Fork 2

haolin/0527comments_01

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
alarm.c 680 Bytes
一键复制 编辑 原始数据 按行查看 历史
add 提交于 2019-05-27 23:38 . C添加两行注释comment2&comment3
#include <sys/types.h>
#include <signal.h>
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
static int alarm_fired = 0;
//comment3
void ding(int sig)
{
alarm_fired = 1;
}
//comment1
int main()
{
pid_t pid;
printf("alarm application starting\n");
pid = fork();
switch (pid) {
case -1:
perror("fork failed");
exit(1);
case 0:
sleep(5);
kill(getppid(), SIGALRM);
exit(0);
}
//comment2
printf("waiting for alarm to go off\n");
(void) signal(SIGALRM, ding);
pause();
if (alarm_fired)
printf("Ding!\n");
printf("done.\n");
exit(0);
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/haolin16/0527comments_01.git
git@gitee.com:haolin16/0527comments_01.git
haolin16
0527comments_01
0527comments_01
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385