view src/parallel_execution/examples/pop_and_push/StackTest.h @ 715:fd9b9fa4ec98

fix pop_and_push test
author anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
date Fri, 28 Aug 2020 16:43:39 +0900
parents 0d35a152b4e7
children 642b9ae21844
line wrap: on
line source

typedef struct StackTest <Type, Impl> {
  __code insertTest1(Impl* stackTest, struct Stack* stack, __code next(...));
  __code insertTest2(Impl* stackTest, struct Stack* stack, __code next(...));
  __code insertTest3(Impl* stackTest, struct Stack* stack, __code next(union Data* data, union Data* data1, ...));
  __code insertTest4(Impl* stackTest, struct Stack* stack, __code next(...));
  __code pop2Test(Impl* stackTest, struct Stack* stack, __code next(...));
  __code pop2Test1(Impl* stackTest, union Data* data, union Data* data1, struct Stack* stack, __code next(...));
  __code next(...);
} StackTest;