blob: 99b93ffef4079a9f466a3d1c91c704d506b1f811 [file] [log] [blame]
/*
* Copyright (c) 2002, Intel Corporation. All rights reserved.
* Created by: julie.n.fleischer REMOVE-THIS AT intel DOT com
* This file is licensed under the GPL license. For the full content
* of this license, see the COPYING file at the top level of this
* source tree.
*
* Test that if clock_settime() changes the value for CLOCK_REALTIME,
* an absolute timer which would now have expired in the past
* will expire immediately (with no error).
*
* Steps:
* - get time T0
* - create/enable a timer to expire at T1 = T0 + TIMEROFFSET
* - set time forward to T1 + CLOCKOFFSET
* - ensure that timer has expired with no error
*
* signal SIGTOTEST is used.
*/
#include <stdio.h>
#include <time.h>
#include <signal.h>
#include <unistd.h>
#include <stdlib.h>
#include "posixtest.h"
#include "helpers.h"
#define TIMEROFFSET 9
#define CLOCKOFFSET 4
#define SHORTTIME 1
#define SIGTOTEST SIGALRM
struct timespec tpreset;
void handler(int signo)
{
printf("Caught signal\n");
printf("Test PASSED\n");
setBackTime(tpreset);
exit(PTS_PASS);
}
int main(int argc, char *argv[])
{
struct sigevent ev;
struct sigaction act;
struct timespec tpT0, tpclock;
struct itimerspec its;
timer_t tid;
int flags = 0;
/*
* set up sigevent for timer
* set up sigaction to catch signal
*/
ev.sigev_notify = SIGEV_SIGNAL;
ev.sigev_signo = SIGTOTEST;
act.sa_handler=handler;
act.sa_flags=0;
if (sigemptyset(&act.sa_mask) != 0) {
perror("sigemptyset() was not successful\n");
return PTS_UNRESOLVED;
}
if (sigaction(SIGTOTEST, &act, 0) != 0) {
perror("sigaction() was not successful\n");
return PTS_UNRESOLVED;
}
if (clock_gettime(CLOCK_REALTIME, &tpT0) != 0) {
perror("clock_gettime() was not successful\n");
return PTS_UNRESOLVED;
}
if (timer_create(CLOCK_REALTIME, &ev, &tid) != 0) {
perror("timer_create() did not return success\n");
return PTS_UNRESOLVED;
}
flags |= TIMER_ABSTIME;
its.it_interval.tv_sec = 0;
its.it_interval.tv_nsec = 0;
its.it_value.tv_sec = tpT0.tv_sec + TIMEROFFSET;
its.it_value.tv_nsec = tpT0.tv_nsec;
if (timer_settime(tid, flags, &its, NULL) != 0) {
perror("timer_settime() did not return success\n");
return PTS_UNRESOLVED;
}
tpclock.tv_sec = its.it_value.tv_sec + CLOCKOFFSET;
tpclock.tv_nsec = its.it_value.tv_nsec;
getBeforeTime(&tpreset);
if (clock_settime(CLOCK_REALTIME, &tpclock) != 0) {
printf("clock_settime() was not successful\n");
return PTS_UNRESOLVED;
}
sleep(SHORTTIME);
printf("timer should have expired _immediately_\n");
tpreset.tv_sec += SHORTTIME;
setBackTime(tpreset);
return PTS_FAIL;
}