Skip to content

Commit 68c667c

Browse files
committed
Disable pool tracking for Proxy_pool in proxy lib
1 parent 15677ac commit 68c667c

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/proxy_lib/proxy_lib.c

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,8 +107,9 @@ void proxy_lib_create_common(void) {
107107
exit(-1);
108108
}
109109

110-
umf_result = umfPoolCreate(umfPoolManagerOps(), OS_memory_provider, NULL, 0,
111-
&Proxy_pool);
110+
umf_result =
111+
umfPoolCreate(umfPoolManagerOps(), OS_memory_provider, NULL,
112+
UMF_POOL_CREATE_FLAG_DISABLE_TRACKING, &Proxy_pool);
112113
if (umf_result != UMF_RESULT_SUCCESS) {
113114
fprintf(stderr, "error: creating UMF pool manager failed\n");
114115
exit(-1);

0 commit comments

Comments
 (0)