be085b37a7affeda67143d184e4d0bd5e6ef36ad
[IRC.git] / Robust / src / Runtime / bamboo / multicoregc.h
1 #ifndef BAMBOO_MULTICORE_GC_H
2 #define BAMBOO_MULTICORE_GC_H
3
4 struct garbagelist {
5   int size;
6   struct garbagelist *next;
7   void * array[];
8 };
9
10 void * gctopva; // top va for shared memory without reserved sblocks
11 void * gcbaseva; // base va for shared memory without reserved sblocks
12
13
14 #endif // BAMBOO_MULTICORE_GC_H