summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtests
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2009-10-27 04:58:47 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2009-10-27 04:58:47 +0000
commit7a6c4c5172508e755c60a389583878d36573b4ca (patch)
tree415d68c1f433cf23d571bf8a386e4fbefc804e15 /testsuites/psxtests
parent2009-10-27 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-7a6c4c5172508e755c60a389583878d36573b4ca.tar.bz2
Add AC_CHECK_DECLS pthread_getcputime, pthread_setcputime.
Diffstat (limited to 'testsuites/psxtests')
-rw-r--r--testsuites/psxtests/configure.ac8
1 files changed, 8 insertions, 0 deletions
diff --git a/testsuites/psxtests/configure.ac b/testsuites/psxtests/configure.ac
index c88c105c6b..c77e9b67c3 100644
--- a/testsuites/psxtests/configure.ac
+++ b/testsuites/psxtests/configure.ac
@@ -37,6 +37,14 @@ AC_CHECK_DECLS([pthread_rwlock_unlock],[],[],[[#include <pthread.h>]])
# FIXME: newlib should supply declaration of pthread_atfork()
AC_CHECK_DECLS([pthread_atfork],[],[],[[#include <pthread.h>]])
+# FIXME: RTEMS presumes pthread_attr_getcputime to be IEEE Std 1003.1
+# Likely an anachronism in RTEMS.
+AC_CHECK_DECLS([pthread_pthread_attr_getcputime],[],[],[[#include <pthread.h>]])
+
+# FIXME: RTEMS presumes pthread_attr_setcputime to be IEEE Std 1003.1
+# Likely an anachronism in RTEMS.
+AC_CHECK_DECLS([pthread_pthread_attr_setcputime],[],[],[[#include <pthread.h>]])
+
# FIXME: adjtime is a non-standardized BSD/Linux extension
# RTEMS should not rely on adjtime
AC_CHECK_DECLS([adjtime],[],[],[[#include <sys/time.h>]])