aboutsummaryrefslogtreecommitdiff
path: root/tests/core/test_atomic.in
blob: 2390941f5a7ffb5d004db4bb57867c3d3a73000a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include <stdio.h>
int main() {
  int x = 10;
  int y = __sync_add_and_fetch(&x, 5);
  printf("*%d,%d*\n", x, y);
  x = 10;
  y = __sync_fetch_and_add(&x, 5);
  printf("*%d,%d*\n", x, y);
  x = 10;
  y = __sync_lock_test_and_set(&x, 6);
  printf("*%d,%d*\n", x, y);
  x = 10;
  y = __sync_bool_compare_and_swap(&x, 9, 7);
  printf("*%d,%d*\n", x, y);
  y = __sync_bool_compare_and_swap(&x, 10, 7);
  printf("*%d,%d*\n", x, y);
  return 0;
}