| 239 | } |
| 240 | |
| 241 | void add(CodeCache* lib) { |
| 242 | int index = loadAcquire(_count); |
| 243 | _libs[index] = lib; |
| 244 | _used_memory += lib->usedMemory(); |
| 245 | storeRelease(_count, index + 1); |
| 246 | } |
| 247 | }; |
| 248 | |
| 249 | #endif // _CODECACHE_H |
nothing calls this directly
no test coverage detected