We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
#include <stdlib.h> int main() { int *a = (int *)malloc(sizeof(int)); *a = 1; return 0; }
Hi, I wrote a demo and want to use mimalloc with asan enabled.
gcc test.c -I/usr/local/include/mimalloc-2.1 -lmimalloc-asan-debug -fsanitize=address -fsanitize-recover=address -lpthre
I found that the stats all become zero, is this normal?
But the stat shows normally when asan is disabled.
Can you help me?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi, I wrote a demo and want to use mimalloc with asan enabled.
I found that the stats all become zero, is this normal?
But the stat shows normally when asan is disabled.
Can you help me?
The text was updated successfully, but these errors were encountered: