Mercurial > hg > GearsTemplate
view src/parallel_execution/Stack.cbc @ 338:0d720487291f
remove stub from RedBlackTree.cbc
author | mir3636 |
---|---|
date | Tue, 09 May 2017 12:08:29 +0900 |
parents | 8a8963ce9858 |
children | 3529c7e93c4f |
line wrap: on
line source
typedef struct Stack<Impl>{ union Data* stack; union Data* data; union Data* data1; __code whenEmpty(...); __code clear(Impl* stack,__code next(...)); __code push(Impl* stack,union Data* data, __code next(...)); __code pop(Impl* stack, __code next(union Data*, ...)); __code pop2(Impl* stack, union Data** data, union Data** data1, __code next(union Data**, union Data**, ...)); __code isEmpty(Impl* stack, __code next(...), __code whenEmpty(...)); __code get(Impl* stack, union Data** data, __code next(...)); __code get2(Impl* stack,..., __code next(...)); __code next(...); } Stack;