mirror of
https://github.com/varun-r-mallya/sysprof.git
synced 2026-02-12 08:00:53 +00:00
libsysprof: add libc/libstdc++
This commit is contained in:
@ -172,6 +172,12 @@ guess_tag (SysprofElfSymbolResolver *self,
|
|||||||
if (strstr (map->filename, "/libgobject-2.0."))
|
if (strstr (map->filename, "/libgobject-2.0."))
|
||||||
tag = g_quark_from_static_string ("GObject");
|
tag = g_quark_from_static_string ("GObject");
|
||||||
|
|
||||||
|
else if (strstr (map->filename, "/libc.so.6"))
|
||||||
|
tag = g_quark_from_static_string ("libc");
|
||||||
|
|
||||||
|
else if (strstr (map->filename, "/libstdc++.so.6"))
|
||||||
|
tag = g_quark_from_static_string ("stdc++");
|
||||||
|
|
||||||
else if (strstr (map->filename, "/libglib-2.0."))
|
else if (strstr (map->filename, "/libglib-2.0."))
|
||||||
tag = g_quark_from_static_string ("GLib");
|
tag = g_quark_from_static_string ("GLib");
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user