source: rtems/c/src/aclocal/check-smp.m4 @ 7c3b0df1

5
Last change on this file since 7c3b0df1 was decff888, checked in by Joel Sherrill <joel.sherrill@…>, on 05/22/14 at 23:05:46

c/src/aclocal/check-smp.m4: Use HAS_SMP not HAS_POSIX_API

  • Property mode set to 100644
File size: 329 bytes
Line 
1AC_DEFUN([RTEMS_CHECK_SMP],
2[dnl
3AC_REQUIRE([RTEMS_ENABLE_SMP])dnl
4
5AC_CACHE_CHECK([whether CPU supports SMP],
6  rtems_cv_HAS_SMP,
7  [dnl
8    case "$RTEMS_CPU" in
9    *)
10      if test "${RTEMS_HAS_SMP}" = "yes"; then
11        rtems_cv_HAS_SMP="yes";
12      else
13        rtems_cv_HAS_SMP="disabled";
14      fi
15      ;;
16    esac])
17])
Note: See TracBrowser for help on using the repository browser.