1 Star 0 Fork 0

godeyer / clang

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
setittime.cpp 830 Bytes
一键复制 编辑 原始数据 按行查看 历史
godeyer 提交于 2024-01-19 14:10 . 初次提交
#include <iostream>
#include <stdio.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#include <fcntl.h>
#include <sys/time.h>
using namespace std;
int main(int argc, char **argv)
{
// 设置3秒之后,每隔两秒设置发送一个信号
struct itimerval new_value = {{2, 0}, {3, 0}};
// struct itimerval new_value;
// 设置间隔时间
// new_value.it_interval.tv_sec = 2;
// new_value.it_interval.tv_usec = 0;
// 设置延迟间隔时间
// new_value.it_value.tv_sec = 3;
// new_value.it_value.tv_usec = 0;
int ret = setitimer(ITIMER_REAL, &new_value, NULL);
printf("定时器开始执行....\n");
if (ret == -1)
{
perror("setitimer");
exit(0);
}
std::cin.get();
// getchar();
// system("pause");
return 0;
}
1
https://gitee.com/zzzman/clang.git
git@gitee.com:zzzman/clang.git
zzzman
clang
clang
master

搜索帮助