We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c4a84b commit 4e62f3cCopy full SHA for 4e62f3c
src/ipc_cache.c
@@ -89,12 +89,14 @@ umf_result_t umfIpcCacheGlobalInit(void) {
89
return ret;
90
}
91
92
+#ifndef NDEBUG
93
static size_t getGlobalLruListSize(lru_list_t lru_list) {
94
size_t size = 0;
95
ipc_handle_cache_entry_t *tmp;
96
DL_COUNT(lru_list, tmp, size);
97
return size;
98
99
+#endif /* NDEBUG */
100
101
void umfIpcCacheGlobalTearDown(void) {
102
ipc_mapped_handle_cache_global_t *cache_global = IPC_MAPPED_CACHE_GLOBAL;
0 commit comments