AnotherMemCheck/Changelog.md
Stephen Seo c851ec6a07 Check for ANOTHER_MEMCHECK_QUIET env var, refactor
Now, if ANOTHER_MEMCHECK_QUIET environment variable is defined, do not
print output when malloc/calloc/free is called.

Minor refactoring: remove unused constexpr declarations in header.

Bump version to 2.2 .

Update Changelog.md .
2024-06-06 15:16:42 +09:00

27 lines
603 B
Markdown

# Changelog
## 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.
## Version 1.0
Initial version with working `AnotherMemCheck`.