int omsSetTimer(timer_t *tId,int value,int interval)就是设置定时器。
按你说的,如果要同时起多个定时器,需要定义一个数组timer_t tm[n]int it[n]tm就是定时器结构,it用来记录对应的定时器是否已经使用,使用中的就是1,没用的就是0;
主进程消息来了就从it找一个没用的来omsSetTimer,如果收到终止消息,那omsSetTimer 定时时间为0
int omsTimer(timer_t *tId,int iValue,int iSeconds ,void(*handle)(union sigval v),void * param)
{
struct sigevent se
struct itimerspec ts
memset (&se, 0, sizeof (se))
se.sigev_notify = SIGEV_THREAD
se.sigev_notify_function = handle
se.sigev_value.sival_ptr = param
if (timer_create (CLOCK_REALTIME, &se, tId) <0)
{
return -1
}
ts.it_value.tv_sec = iValue
// ts.it_value.tv_sec =3
//ts.it_value.tv_nsec = (long)(iValue % 1000) * (1000000L)
ts.it_value.tv_nsec = 0
ts.it_interval.tv_sec = iSeconds
//ts.it_interval.tv_nsec = (long)(iSeconds % 1000) * (1000000L)
ts.it_interval.tv_nsec = 0
if (timer_settime(*tId, TIMER_ABSTIME, &ts, NULL) <0)
{
return -1
}
return 0
}
int omsSetTimer(timer_t *tId,int value,int interval)
{
struct itimerspec ts
ts.it_value.tv_sec =value
//ts.it_value.tv_nsec = (long)(value % 1000) * (1000000L)
ts.it_value.tv_nsec = 0
ts.it_interval.tv_sec = interval
//ts.it_interval.tv_nsec = (long)(interval % 1000) * (1000000L)
ts.it_interval.tv_nsec = 0
if (timer_settime(*tId, TIMER_ABSTIME, &ts, NULL) <0)
{
return -1
}
return 0
}
另外,团IDC网上有许多产品团购,便宜有口碑
不管是在进程还是线程,很多时候我们都会使用一些定时器之类的功能,这里就定时器在多线程的使用说一下。首先在linux编程中定时器函数有alarm()和setitimer(),alarm()可以提供一个基于秒的定时功能,而setitimer可以提供一个基于微妙的定时功能。alarm()原型:
#include <unistd.h>
unsigned int alarm(unsigned int seconds)
这个函数在使用上很简单,第一次调用这个函数的时候是设置定时器的初值,下一次调用是重新设置这个值,并会返回上一次定时的剩余时间。
setitimer()原型:
#include <sys/time.h>
int setitimer(int which, const struct itimerval *value,struct itimerval *ovalue)
这个函数使用起来稍微有点说法,首先是第一个参数which的值,这个参数设置timer的计时策略,which有三种状态分别是:
ITIMER_REAL:使用系统时间来计数,时间为0时发出SIGALRM信号,这种定时能够得到一个精准的定时,当然这个定时是相对的,因为到了微秒级别我们的处理器本身就不够精确。
ITIMER_VIRTUAL:使用进程时间也就是进程分配到的时间片的时间来计数,时间为0是发出SIGVTALRM信号,这种定时显然不够准确,因为系统给进程分配时间片不由我们控制。
ITIMER_PROF:上面两种情况都能够触发
第二个参数参数value涉及到两个结构体:
struct itimerval {
struct timeval it_interval /* next value */
struct timeval it_value /* current value */
}
struct timeval {
long tv_sec /* seconds */
long tv_usec /* microseconds */
}
在结构体itimerval中it_value是定时器当前的值,it_interval是当it_value的为0后重新填充的值。而timeval结构体中的两个变量就简单了一个是秒一个是微秒。
上面是这两个定时函数的说明,这个函数使用本不是很难,可以说是很简单,但是碰到具体的应用的时候可能就遇到问题了,在多进程编程中使用一般不会碰到什么问题,这里说的这些问题主要体现在多线程编程中。比如下面这个程序:
#include <pthread.h>
#include <signal.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/time.h>
void sig_handler(int signo)
{
alarm(2)
printf("alarm signal\n")
}
void *pthread_func()
{
alarm(2)
while(1)
{
pause()
}
}
int main(int argc, char **argv)
{
pthread_t tid
int retval
signal(SIGALRM, sig_handler)
if((retval = pthread_create(&tid, NULL, pthread_func, NULL)) <0)
{
perror("pthread_create")
exit(-1)
}
while(1)
{
printf("main thread\n")
sleep(10)
}
return 0
}
这个程序的理想结果是:
main thread
alarm signal
alarm signal
alarm signal
alarm signal
alarm signal
main thread
可事实上并不是这样的,它的结果是:
main pthread
alarm signal
main pthread
alarm signal
main pthread
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)