我有以下代码,我希望等待2秒,然后在循环中等待5秒。
我之所以没有使用it_interval来重新启动计时器。
#include <stdio.h>
#include <string.h>
#include <errno.h>
#include <unistd.h>
#include <signal.h>
#include <time.h>
#include <sys/time.h>
#include <semaphore.h>
sem_t sem;
void sighdlr( int sig )
{
printf( "sighdlr\n" );
sem_post( &sem );
}
int main( int c, char *v[] )
{
signal( SIGALRM, sighdlr );
struct itimerval itv;
struct tm tm;
time_t now;
while( true )
{
itv.it_value.tv_sec = 2;
itv.it_value.tv_usec = 0;
itv.it_interval.tv_sec = 0;
itv.it_interval.tv_usec = 0;
setitimer( ITIMER_REAL, &itv, NULL );
sem_wait( &sem );
now = time( NULL );
localtime_r( &now, &tm );
fprintf( stderr, "%02d:%02d:%02d\n", tm.tm_hour, tm.tm_min, tm.tm_sec );
itv.it_value.tv_sec = 5;
itv.it_value.tv_usec = 0;
itv.it_interval.tv_sec = 0;
itv.it_interval.tv_usec = 0;
setitimer( ITIMER_REAL, &itv, NULL );
sem_wait( &sem );
now = time( NULL );
localtime_r( &now, &tm );
fprintf( stderr, "%02d:%02d:%02d\n", tm.tm_hour, tm.tm_min, tm.tm_sec );
}
}
它产生以下输出
sighdlr
15:32:50
15:32:50
sighdlr
15:32:52
15:32:52
sighdlr
15:32:54
15:32:54
sighdlr
15:32:56
15:32:56
sighdlr
15:32:58
15:32:58
sighdlr
15:33:00
15:33:00
我无法理解为什么它没有等待第二个计时器的5秒钟。
有什么想法吗?
THX 微米。
答案 0 :(得分:1)
啊哈!修好了。
sem_wait
被中断并返回-1
和errno == EINTR
所以我必须有这样的事情。
do {
ret = sem_wait( &sem );
} while( ret < 0 && errno == EINTR );