source: rtems/c/src/aclocal/check-smp.m4 @ 105ccdd5

4.115
Last change on this file since 105ccdd5 was 65c6425, checked in by Joel Sherrill <joel.sherrill@…>, on 05/03/12 at 17:24:46

Remove CVS Id Strings (manual edits after script)

These modifications were required by hand after running the script.
In some cases, the file names did not match patterns. In others,
the format of the file did not match any common patterns.

  • Property mode set to 100644
File size: 335 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_POSIX_API,
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.