more changes
[IRC.git] / Robust / src / Runtime / bamboo / pmc_mem.h
1 #ifndef PMC_MEM_H
2 #define PMC_MEM_H
3
4 void * pmc_alloc(unsigned int * numbytesallocated, unsigned int minimumbytes) {
5   for(int i=0;i<NUMCORES4GC;i+=2) {
6     void *startptr=pmc_heapptr->regions[i].lastptr;
7     void *finishptr=pmc_heapptr->regions[i+1].lastptr;
8     if ((finishptr-startptr)>minimumbytes) {
9       
10     }
11   }
12 }
13
14 #endif