File: ac_have_sync_val_compare_and_swap.m4

package info (click to toggle)
google-glog 0.3.5-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 2,672 kB
  • ctags: 1,604
  • sloc: sh: 11,285; cpp: 6,599; makefile: 254; ansic: 88
file content (14 lines) | stat: -rw-r--r-- 583 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
AC_DEFUN([AX_C___SYNC_VAL_COMPARE_AND_SWAP], [
  AC_MSG_CHECKING(for __sync_val_compare_and_swap)
  AC_CACHE_VAL(ac_cv___sync_val_compare_and_swap, [
    AC_TRY_LINK(
      [],
      [int a; if (__sync_val_compare_and_swap(&a, 0, 1)) return 1; return 0;],
      ac_cv___sync_val_compare_and_swap=yes,
      ac_cv___sync_val_compare_and_swap=no
    )])
  if test "$ac_cv___sync_val_compare_and_swap" = "yes"; then
    AC_DEFINE(HAVE___SYNC_VAL_COMPARE_AND_SWAP, 1, [define if your compiler has __sync_val_compare_and_swap])
  fi
  AC_MSG_RESULT($ac_cv___sync_val_compare_and_swap)
])