summaryrefslogtreecommitdiffhomepage
path: root/src/nxt_malloc.c (follow)
AgeCommit message (Collapse)AuthorFilesLines
2020-09-29Wrapping libunit's malloc() and free() calls for logging purposes.Max Romanov1-0/+16
This change aids heap usage analysis in applications. The alloc and free functions are also required for lvlhash due to the upcoming threading support, because using main nxt_memalign() and nxt_free() isn't safe in a multithreaded app environment. The reason is that these functions may use thread-local structures which aren't initialized properly in applications.
2018-03-05Reduced number of critical log levels.Valentin Bartenev1-17/+13
2017-01-17Initial version.Igor Sysoev1-0/+210