1a0cfd6a4b3e7d7acb5f4770abafbdc9cea0f4d8
[model-checker-benchmarks.git] / stack.h
1 struct Cell {
2     Cell *pnext;
3     void *pdata;
4 };
5
6 struct ThreadInfo {
7     unsigned int id;
8     char op;
9     Cell cell;
10     int spin;
11 };
12
13 struct Simple_Stack {
14     Cell *ptop;
15 };
16