user823738
user823738

Reputation: 17521

How to detect memory leaks on windowed (gtk,qt,etc) applications?

I used to use valgrind to find memory leaks in my applications. But when i use gtk/qt/glut or any "windowing" application valgrind is spamming like an evil.

I've found out that in these libraries are no real memory leaks - but how then detect real memory leaks ?

Upvotes: 3

Views: 376

Answers (1)

Sam Miller
Sam Miller

Reputation: 24164

You can use a suppression file to silence warnings in third party libraries you cannot control.

Upvotes: 1

Related Questions