Github user zwoop commented on a diff in the pull request: https://github.com/apache/trafficserver/pull/622#discussion_r62567399 --- 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 -- Yeah, James is right, definitely not awesome to have cross pollination of implementations and interfaces across module boundaries :-/. Probably should go into I_IOBuffer.h ?
--- 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. ---