| 83 | } |
| 84 | |
| 85 | void memUnlock(const void *ptr) { |
| 86 | memoryManager().userUnlock(const_cast<void *>(ptr)); |
| 87 | } |
| 88 | |
| 89 | bool isLocked(const void *ptr) { |
| 90 | return memoryManager().isUserLocked(const_cast<void *>(ptr)); |
nothing calls this directly
no test coverage detected