Mon, 06 Mar 2017 15:37:40 +0100
ucx_mempool_free() aborts execution instead of just exiting on failure
ucx/mempool.c | file | annotate | diff | comparison | revisions |
--- a/ucx/mempool.c Mon Feb 27 17:25:36 2017 +0100 +++ b/ucx/mempool.c Mon Mar 06 15:37:40 2017 +0100 @@ -172,7 +172,7 @@ } fprintf(stderr, "FATAL: 0x%08" PRIxPTR" not in mpool 0x%08" PRIxPTR"\n", (intptr_t)ptr, (intptr_t)pool); - exit(EXIT_FAILURE); + abort(); } void ucx_mempool_destroy(UcxMempool *pool) {