fix commit that mistakenly happened
[model-checker-benchmarks.git] / elimination-backoff / 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