|
NAMEdwarf_get_section_max_offsets ,
dwarf_get_section_max_offsets_b —
return the size of DWARF sections
LIBRARYDWARF Access Library (libdwarf, -ldwarf)SYNOPSIS#include <libdwarf.h>
int
int
DESCRIPTIONFunctiondwarf_get_section_max_offsets_b () retrieves the
sizes of the DWARF sections in a DWARF debug context. Argument
dbg should reference a DWARF debug context allocated
using
dwarf_init(3).
The function stores the size of each DWARF section to the location pointed to
by the argument corresponding to the section name. If a DWARF section does not
exist, the location pointed to by the argument corresponding to that section
will be set to zero.
A value of NULL may be used for any of the arguments debug_info, debug_abbrev, debug_line, debug_loc, debug_aranges, debug_macinfo, debug_pubnames, debug_str, debug_frame, debug_ranges, debug_pubtypes and debug_types if the caller is not interested in the respective section size. Function RETURN VALUESOn success, these functions returnDW_DLV_OK . If
argument dbg is NULL, they return
DW_DLV_ERROR .
SEE ALSOdwarf(3), dwarf_init(3)
Visit the GSP FreeBSD Man Page Interface. |