You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

82 lines
1.6 KiB

/*
* File: common_timers.h
*
* Keep all the common defines/checks for the timer tests here
*/
#ifndef __COMMON_TIMERS_H__
#define __COMMON_TIMERS_H__
#include "config.h"
#include "lapi/syscalls.h"
#include "lapi/posix_clocks.h"
#ifndef NSEC_PER_SEC
#define NSEC_PER_SEC (1000000000L)
#endif
clock_t clock_list[] = {
CLOCK_REALTIME,
CLOCK_MONOTONIC,
CLOCK_PROCESS_CPUTIME_ID,
CLOCK_THREAD_CPUTIME_ID,
CLOCK_BOOTTIME,
CLOCK_BOOTTIME_ALARM,
CLOCK_REALTIME_ALARM,
CLOCK_TAI,
};
/* CLOCKS_DEFINED is the number of clock sources defined for sure */
#define CLOCKS_DEFINED (sizeof(clock_list) / sizeof(*clock_list))
/* MAX_CLOCKS is the maximum number of clock sources supported by kernel */
#define MAX_CLOCKS 16
#define CLOCK_TO_STR(def_name) \
case def_name: \
return #def_name;
const char *get_clock_str(const int clock_id)
{
switch (clock_id) {
CLOCK_TO_STR(CLOCK_REALTIME);
CLOCK_TO_STR(CLOCK_MONOTONIC);
CLOCK_TO_STR(CLOCK_PROCESS_CPUTIME_ID);
CLOCK_TO_STR(CLOCK_THREAD_CPUTIME_ID);
CLOCK_TO_STR(CLOCK_BOOTTIME);
CLOCK_TO_STR(CLOCK_BOOTTIME_ALARM);
CLOCK_TO_STR(CLOCK_REALTIME_ALARM);
CLOCK_TO_STR(CLOCK_TAI);
default:
return "CLOCK_!?!?!?";
}
}
int possibly_unsupported(clock_t clock)
{
switch (clock) {
case CLOCK_BOOTTIME:
case CLOCK_BOOTTIME_ALARM:
case CLOCK_REALTIME_ALARM:
case CLOCK_TAI:
return 1;
default:
return 0;
}
}
int have_cputime_timers(void)
{
return tst_kvercmp(2, 6, 12) >= 0;
}
#include "lapi/syscalls.h"
#include <time.h>
#include <unistd.h>
/* timer_t in kernel(int) is different from Glibc definition(void*).
* Use the kernel definition for syscall tests
*/
typedef int kernel_timer_t;
#endif