G_SLICE=always-mallocG_DEBUG=gc-friendlyvalgrind--tool=memcheck--leak-check=full--leak-resolution=high--num-callers=20--suppressions=
参数说明:
G_SLICE=always-malloc与G_DEBUG=gc-friendly,通知glib使用valgrind友好的内存分配手段
--tool=memcheck--leak-check=full--leak-resolution=high--num-callers=20,valgrind参数
--suppressions,根据filename的内容,压制不必要的内存泄露提示,如,g_type_init里会分配一些运行期内不会释放的空间,并不能认为是内存泄露,压制的语法可以参考附件。
--log-file,可以将log打入文件中,用于后续分析
Gdbus_test,要测试的程序。