view libitm/testsuite/libitm.c/clone-1.c @ 144:8f4e72ab4e11

fix segmentation fault caused by nothing next cur_op to end
author Takahiro SHIMIZU <anatofuz@cr.ie.u-ryukyu.ac.jp>
date Sun, 23 Dec 2018 21:23:56 +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;
}