| 250 | } |
| 251 | |
| 252 | uint64_t* BNSharedCacheAllocRegionList(uint64_t* list, size_t count) |
| 253 | { |
| 254 | uint64_t* newList = new uint64_t[count]; |
| 255 | for (size_t i = 0; i < count; i++) |
| 256 | newList[i] = list[i]; |
| 257 | return newList; |
| 258 | } |
| 259 | |
| 260 | void BNSharedCacheFreeRegion(BNSharedCacheRegion region) |
| 261 | { |