From fb390e7a9112aa5f04f3e5eda5eaf33fdcc3b330 Mon Sep 17 00:00:00 2001 From: Simon Marlow Date: Tue, 6 Mar 2007 09:35:25 +0000 Subject: [PATCH] fix the timer_create() test --- aclocal.m4 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aclocal.m4 b/aclocal.m4 index d7bed9a..9050299 100644 --- a/aclocal.m4 +++ b/aclocal.m4 @@ -1036,7 +1036,7 @@ int main(int argc, char *argv[]) timer_t timer; ev.sigev_notify = SIGEV_SIGNAL; ev.sigev_signo = SIGVTALRM; - if (timer_create(CLOCK_REALTIME, &ev, &timer) != 0) { + if (timer_create(CLOCK_PROCESS_CPUTIME_ID, &ev, &timer) != 0) { exit(1); } #else @@ -1050,7 +1050,7 @@ int main(int argc, char *argv[]) ]) case $fptools_cv_timer_create_works in yes) AC_DEFINE([USE_TIMER_CREATE], 1, - [Define to 1 if we can use timer_create(CLOCK_REALTIMER,...)]);; + [Define to 1 if we can use timer_create(CLOCK_PROCESS_CPUTIME_ID,...)]);; esac ]) -- 1.7.10.4