What do the suppressed leaks mean in Valgrind?

后端 未结 1 667
灰色年华
灰色年华 2020-12-01 23:57

I have developed a pure-C implementation of FIFO lists (queues) in files fifo.h and fifo.c, and have written a test programme testfifo.c which I compile to ./bin/testf

相关标签:
1条回答
  • 2020-12-02 00:02

    Those are leaks outside of your code, in (probably shared) libraries or known false positives. Running valgrind with -v should inform you about the suppressions used.

    0 讨论(0)
提交回复
热议问题