Github user zwoop commented on a diff in the pull request: https://github.com/apache/trafficserver/pull/622#discussion_r62565771 --- Diff: lib/ts/ink_memory.h --- @@ -89,6 +89,11 @@ void *ats_free_null(void *ptr); void ats_memalign_free(void *ptr); int ats_mallopt(int param, int value); +/* use IOBufs as the underlying allocation pool */ +void *ats_malloc_pool(size_t size); +void *ats_realloc_pool(void *ptr, size_t size); +void ats_free_pool(void *ptr); --- End diff -- All the other memory declarations (like ats_malloc) are already in ink_memory.h, no?
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. ---