mirror of
https://github.com/varun-r-mallya/sysprof.git
synced 2025-12-31 20:36:25 +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."))
|
||||
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."))
|
||||
tag = g_quark_from_static_string ("GLib");
|
||||
|
||||
|
||||
Reference in New Issue
Block a user