annotate src/parallel_execution/stack.h @ 145:cc071cf1ba85

add stack clear interface
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Thu, 10 Nov 2016 07:51:15 +0900
parents f31b4e4bf4bb
children 081607dcf893
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
132
7c309e1aea73 Code Gears stack api
one
parents: 130
diff changeset
1 extern union Data* createSingleLinkedStack(struct Context* context);
140
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 132
diff changeset
2
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 132
diff changeset
3 extern __code pushSingleLinkedStack_stub(struct Context* context) ;
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 132
diff changeset
4 extern __code popSingleLinkedStack_stub(struct Context* context) ;
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 132
diff changeset
5 extern __code pop2SingleLinkedStack_stub(struct Context* context) ;
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 132
diff changeset
6 extern __code getSingleLinkedStack_stub(struct Context* context) ;
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 132
diff changeset
7 extern __code get2SingleLinkedStack_stub(struct Context* context) ;
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 132
diff changeset
8 extern __code isEmptySingleLinkedStack_stub(struct Context* context) ;
145
cc071cf1ba85 add stack clear interface
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 140
diff changeset
9 extern __code clearSingleLinkedStack_stub(struct Context* context) ;