changes.
[IRC.git] / Robust / src / Runtime / multicoregc.h
1 #ifndef MULTICORE_GC_H
2 #define MULTICORE_GC_H
3
4 struct garbagelist {
5   int size;
6   struct garbagelist *next;
7   void * array[];
8 };
9
10 struct listitem {
11   struct listitem * prev;
12   struct listitem * next;
13   struct garbagelist * stackptr;
14 };
15
16 #endif // MULTICORE_GC_H