summaryrefslogtreecommitdiff
path: root/aclocal.m4
diff options
context:
space:
mode:
authorSimon Marlow <simonmar@microsoft.com>2007-03-06 09:35:25 +0000
committerSimon Marlow <simonmar@microsoft.com>2007-03-06 09:35:25 +0000
commitfb390e7a9112aa5f04f3e5eda5eaf33fdcc3b330 (patch)
tree272dde221bfc3b1567da1e2a745281335c4a3cc5 /aclocal.m4
parent948af9452927becb494ac967fba813956b74a182 (diff)
downloadhaskell-fb390e7a9112aa5f04f3e5eda5eaf33fdcc3b330.tar.gz
fix the timer_create() test
Diffstat (limited to 'aclocal.m4')
-rw-r--r--aclocal.m44
1 files changed, 2 insertions, 2 deletions
diff --git a/aclocal.m4 b/aclocal.m4
index d7bed9a7ff..9050299cd5 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
])