DWARF_SRCFILES(3) | Library Functions Manual | DWARF_SRCFILES(3) |
dwarf_srcfiles
—
#include <libdwarf.h>
int
dwarf_srcfiles
(Dwarf_Die die,
char ***filenames, Dwarf_Signed
*filenamecount, Dwarf_Error *err);
dwarf_srcfiles
() returns the source file names
associated with a compilation unit. Source file names are returned as an array
of NUL-terminated strings.
Argument die should reference a DWARF debugging information entry descriptor with source file information, see dwarf(3). Argument filenames should point to a location that will hold a pointer to the returned array of file names. Argument filenamecount should point to a location that will hold the number of file names returned. If argument err is not NULL, it will be used to store error information in case of an error.
dwarf_srcfiles
() returns
DW_DLV_OK
when it succeeds. In case of an error, it
returns DW_DLV_ERROR
and sets the argument
err.
dwarf_srcfiles
() can fail with:
DW_DLE_ARGUMENT
]DW_DLE_NO_ENTRY
]DW_DLE_MEMORY
]April 28, 2010 | NetBSD 9.0 |