source: rtems/testsuites/smptests/configure.ac @ 2ef0328

4.115
Last change on this file since 2ef0328 was 2ef0328, checked in by Jennifer Averett <jennifer.averett@…>, on 02/26/14 at 15:57:16

smptests: Add smppsxaffinity02.

This method exercises the ability to dynamically get and set
the affinity of POSIX threads.

NOTE: There is no scheduler support for affinity. This is
simply a data integrity test.

  • Property mode set to 100644
File size: 2.0 KB
Line 
1## Process this file with autoconf to produce a configure script.
2
3AC_PREREQ([2.69])
4AC_INIT([rtems-c-src-tests-smptests],[_RTEMS_VERSION],[http://www.rtems.org/bugzilla])
5AC_CONFIG_SRCDIR([smp01])
6AC_CONFIG_HEADER([config.h])
7RTEMS_TOP([../..],[..])
8
9RTEMS_CANONICAL_TARGET_CPU
10
11AM_INIT_AUTOMAKE([no-define foreign 1.12.2])
12AM_MAINTAINER_MODE
13
14RTEMS_ENABLE_CXX
15
16RTEMS_ENV_RTEMSBSP
17
18RTEMS_PROJECT_ROOT
19
20RTEMS_PROG_CC_FOR_TARGET
21
22RTEMS_PROG_CXX_FOR_TARGET
23RTEMS_CANONICALIZE_TOOLS
24
25RTEMS_CHECK_CPUOPTS([RTEMS_POSIX_API])
26
27RTEMS_CHECK_CUSTOM_BSP(RTEMS_BSP)
28RTEMS_CHECK_CPUOPTS([RTEMS_MULTIPROCESSING])
29RTEMS_CHECK_CXX(RTEMS_BSP)
30RTEMS_CHECK_CPUOPTS([RTEMS_NETWORKING])
31RTEMS_CHECK_CPUOPTS([RTEMS_SMP])
32
33AM_CONDITIONAL(SMPTESTS,test "$rtems_cv_RTEMS_SMP" = "yes")
34
35AM_CONDITIONAL([HAS_POSIX],[test x"${rtems_cv_RTEMS_POSIX_API}" = xyes])
36
37# These are SMP related and were added to newlib by RTEMS.
38AC_CHECK_DECLS([pthread_attr_setaffinity_np],[],[],[[
39  #define _GNU_SOURCE
40  #include <pthread.h>]])
41AC_CHECK_DECLS([pthread_attr_getaffinity_np],[],[],[[
42  #define _GNU_SOURCE
43  #include <pthread.h>]])
44AC_CHECK_DECLS([pthread_setaffinity_np],[],[],[[
45  #define _GNU_SOURCE
46  #include <pthread.h>]])
47AC_CHECK_DECLS([pthread_getaffinity_np],[],[],[[
48  #define _GNU_SOURCE
49  #include <pthread.h>]])
50AC_CHECK_DECLS([pthread_getattr_np],[],[],[[
51  #define _GNU_SOURCE
52  #include <pthread.h>]])
53
54# Added to newlib pthreads for RTEMS SMP (np), may not be present
55AC_CHECK_HEADERS([sys/cpuset.h])
56AM_CONDITIONAL(HAS_CPUSET,test x"${ac_cv_header_sys_cpuset_h}" = x"yes")
57
58# Explicitly list all Makefiles here
59AC_CONFIG_FILES([Makefile
60smp01/Makefile
61smp02/Makefile
62smp03/Makefile
63smp05/Makefile
64smp07/Makefile
65smp08/Makefile
66smp09/Makefile
67smpaffinity01/Makefile
68smpatomic01/Makefile
69smpfatal01/Makefile
70smpfatal02/Makefile
71smpfatal03/Makefile
72smplock01/Makefile
73smpmigration01/Makefile
74smppsxaffinity01/Makefile
75smppsxaffinity02/Makefile
76smppsxsignal01/Makefile
77smpschedule01/Makefile
78smpsignal01/Makefile
79smpswitchextension01/Makefile
80smpunsupported01/Makefile
81])
82AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.