[Vala] How track memory leaks ?

2013-03-18 Thread raum
Hello, I wondered if it 's possible to recover memory information or memory leaks other than mem_set_vtable(mem_profiler_table); and without using a third party software like valgrind ? Thanks Raum ___ vala-list mailing list vala-list@gnome.org

Re: [Vala] How track memory leaks ?

2013-03-18 Thread Jim Nelson
This is a problem we faced in Geary.  We went several directions before adding this, which helped immensely: http://redmine.yorba.org/projects/geary/repository/revisions/master/entry/src/engine/api/geary-base-object.vala Note that this approach is of limited utility, as it requires *all* your

Re: [Vala] How track memory leaks ?

2013-03-18 Thread Jens Georg
On Mo, 2013-03-18 at 22:44 -0007, Jim Nelson wrote: This is a problem we faced in Geary. We went several directions before adding this, which helped immensely: http://redmine.yorba.org/projects/geary/repository/revisions/master/entry/src/engine/api/geary-base-object.vala Note that this

Re: [Vala] How track memory leaks ?

2013-03-18 Thread Evan Nemerson
On Mon, 2013-03-18 at 15:32 +0100, r...@no-log.org wrote: Hello, I wondered if it 's possible to recover memory information or memory leaks other than mem_set_vtable(mem_profiler_table); and without using a third party software like valgrind ? Most people use third-party software.