libdwarf
Loading...
Searching...
No Matches
Reading .debug_varnames data (nonstandard)

Example .debug_varnames was IRIX/MIPS only.

Example .debug_varnames was IRIX/MIPS only.

This section is an SGI/MIPS extension, not created by modern compilers.

*/
int examplen(Dwarf_Debug dbg,Dwarf_Error *error)
{
Dwarf_Signed count = 0;
Dwarf_Global *vars = 0;
Dwarf_Signed i = 0;
int res = 0;
res = dwarf_globals_by_type(dbg,DW_GL_VARS,
&vars,&count,error);
if (res != DW_DLV_OK) {
return res;
}
for (i = 0; i < count; ++i) {
/* use vars[i]
struct Dwarf_Global_s * Dwarf_Global
Definition libdwarf.h:644
struct Dwarf_Error_s * Dwarf_Error
Definition libdwarf.h:611
struct Dwarf_Debug_s * Dwarf_Debug
Definition libdwarf.h:617
signed long long Dwarf_Signed
Definition libdwarf.h:197
DW_API int dwarf_globals_by_type(Dwarf_Debug dw_dbg, int dw_requested_section, Dwarf_Global **dw_contents, Dwarf_Signed *dw_count, Dwarf_Error *dw_error)
Allocate Any Fast Access DWARF2-DWARF4.