在Linux中,有多種方法可以使用定時器。以下是兩種常見的方法:
timer_create
函數創建定時器對象,然后使用timer_settime
函數設置定時器的時間和間隔。以下是一個使用定時器的示例代碼:#include <stdio.h>
#include <stdlib.h>
#include <signal.h>
#include <time.h>
timer_t timerid;
void timer_handler(int sig)
{
printf("Timer expired\n");
}
int main()
{
struct sigevent sev;
struct itimerspec its;
struct sigaction sa;
// 設置定時器信號處理函數
sa.sa_flags = SA_SIGINFO;
sa.sa_sigaction = timer_handler;
sigemptyset(&sa.sa_mask);
sigaction(SIGRTMIN, &sa, NULL);
// 創建定時器對象
sev.sigev_notify = SIGEV_SIGNAL;
sev.sigev_signo = SIGRTMIN;
sev.sigev_value.sival_ptr = &timerid;
timer_create(CLOCK_REALTIME, &sev, &timerid);
// 設置定時器的時間和間隔
its.it_interval.tv_sec = 1;
its.it_interval.tv_nsec = 0;
its.it_value.tv_sec = 1;
its.it_value.tv_nsec = 0;
timer_settime(timerid, 0, &its, NULL);
// 等待定時器信號
while (1)
{
;
}
return 0;
}
alarm
函數設置定時器信號。以下是一個使用alarm
函數的示例代碼:#include <stdio.h>
#include <stdlib.h>
#include <signal.h>
#include <unistd.h>
void timer_handler(int sig)
{
printf("Timer expired\n");
}
int main()
{
signal(SIGALRM, timer_handler);
// 設置定時器的時間
alarm(3);
// 等待定時器信號
while (1)
{
;
}
return 0;
}
這些示例代碼演示了如何在Linux中使用定時器。你可以根據自己的需求選擇合適的方法來實現定時器功能。