| 79 | void memFreeUser(void *ptr) { memoryManager().unlock(ptr, true); } |
| 80 | |
| 81 | void memLock(const void *ptr) { |
| 82 | memoryManager().userLock(const_cast<void *>(ptr)); |
| 83 | } |
| 84 | |
| 85 | void memUnlock(const void *ptr) { |
| 86 | memoryManager().userUnlock(const_cast<void *>(ptr)); |
no test coverage detected