AnotherMemCheck/Changelog.md

33 lines
754 B
Markdown
Raw Normal View History

2024-06-04 03:15:46 +00:00
# Changelog
2024-06-26 05:02:55 +00:00
## Version 2.3
Added ids to each chunk of allocated memory to make it easier to keep track of
which allocated memory refers to which unfreed memory.
## Version 2.2
Minor refactoring: remove unused constexpr declarations in header.
Change implementation to not print when malloc/calloc/free is called if the
"ANOTHER_MEMCHECK_QUIET" environment variable is defined.
## Verison 2.1
Previous implementation did not fully account for total size of a call to
calloc. This version should fix this.
## Version 2.0
Minor refactorings.
Change internal implementation of linked list to be doubly-linked.
Add support for calloc.
Add pthreads to mutex-lock malloc/calloc/free.
2024-06-04 03:15:46 +00:00
## Version 1.0
Initial version with working `AnotherMemCheck`.