view libitm/testsuite/libitm.c/clone-1.c @ 158:494b0b89df80 default tip

...
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 25 May 2020 18:13:55 +0900
parents 04ced10e8804
children
line wrap: on
line source

/* Verify that we can look up tm clone of transaction_callable
   and transaction_pure.  */

#include <stdlib.h>
#include <libitm.h>

static int x;

int __attribute__((transaction_pure)) pure(int i)
{
  return i+2;
}

int __attribute__((transaction_callable)) callable(void)
{
  return ++x;
}

int main()
{
  if (_ITM_getTMCloneSafe (&pure) != &pure)
    abort ();

  if (_ITM_getTMCloneSafe (&callable) == NULL)
    abort ();

  return 0;
}