Github user bgaff commented on a diff in the pull request: https://github.com/apache/trafficserver/pull/622#discussion_r62566454 --- 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 -- That's why it landed in iocore it would have been a pain to deal with dependencies between libtsutil and iocore.
--- 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. ---