[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[libmicrohttpd] feature request: change malloc/calloc/free functions
From: |
Nicolas Mora |
Subject: |
[libmicrohttpd] feature request: change malloc/calloc/free functions |
Date: |
Sun, 21 Jul 2019 15:28:01 -0400 |
User-agent: |
Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Thunderbird/60.8.0 |
I happened to see that MHD doesn't allow to use different
malloc/calloc/free functions than the one provided by libc.
This would be useful if the underlying app using MHD uses different
allocating functions like Hoard: http://www.hoard.org/
More specifically, when using MHD_RESPMEM_MUST_FREE in a response
allocated with a different malloc() function, there would be problems.
I can submit a patch for it.
Basically, I'd do it by adding functions like this:
void MHD_set_alloc_funcs(MHD_malloc_t malloc_fn, MHD_calloc_t calloc_fn,
MHD_free_t free_fn);
void MHD_get_alloc_funcs(MHD_malloc_t * malloc_fn, MHD_calloc_t *
calloc_fn, MHD_free_t * free_fn);
I didn't see any use of realloc() in the source code, so I wouldn't
allow to change it.
Then, all internal call to malloc()/calloc()/free() would be replaced by
MHD_malloc()/MHD_calloc()/MHD_free()
How about that? Any feedback?
/Nicolas
- [libmicrohttpd] feature request: change malloc/calloc/free functions,
Nicolas Mora <=
- Re: [libmicrohttpd] feature request: change malloc/calloc/free functions, Christian Grothoff, 2019/07/21
- Re: [libmicrohttpd] feature request: change malloc/calloc/free functions, Nicolas Mora, 2019/07/21
- Re: [libmicrohttpd] feature request: change malloc/calloc/free functions, Nicolas Mora, 2019/07/21
- Re: [libmicrohttpd] feature request: change malloc/calloc/free functions, Nicolas Mora, 2019/07/21
- Re: [libmicrohttpd] feature request: change malloc/calloc/free functions, Christian Grothoff, 2019/07/22
- Re: [libmicrohttpd] feature request: change malloc/calloc/free functions, Evgeny Grin, 2019/07/22
- Re: [libmicrohttpd] feature request: change malloc/calloc/free functions, Christian Grothoff, 2019/07/22
- Re: [libmicrohttpd] feature request: change malloc/calloc/free functions, Nicolas Mora, 2019/07/22
- Re: [libmicrohttpd] feature request: change malloc/calloc/free functions, Christian Grothoff, 2019/07/29
Re: [libmicrohttpd] feature request: change malloc/calloc/free functions, Evgeny Grin, 2019/07/22