X-Git-Url: http://git.efficios.com/?p=babeltrace.git;a=blobdiff_plain;f=plugins%2Flttng-utils%2Fbin-info.h;h=2bcd9fae42cd55b1896fe41f765300abdb667da6;hp=42cb1abcb60a9e8aeba358dfff1b11528b2341ff;hb=2638950d97cea60116c550cdfb9fd7bbe5cf6b84;hpb=ec272228573e3676af5bee7dc5c8b58970ab4822 diff --git a/plugins/lttng-utils/bin-info.h b/plugins/lttng-utils/bin-info.h index 42cb1abc..2bcd9fae 100644 --- a/plugins/lttng-utils/bin-info.h +++ b/plugins/lttng-utils/bin-info.h @@ -46,8 +46,8 @@ struct bin_info { /* Size of exec address space. */ uint64_t memsz; /* Paths to ELF and DWARF files. */ - char *elf_path; - char *dwarf_path; + gchar *elf_path; + gchar *dwarf_path; /* libelf and libdw objects representing the files. */ Elf *elf_file; Dwarf *dwarf_info; @@ -56,13 +56,13 @@ struct bin_info { size_t build_id_len; /* Optional debug link info. */ - char *dbg_link_filename; + gchar *dbg_link_filename; uint32_t dbg_link_crc; /* FDs to ELF and DWARF files. */ int elf_fd; int dwarf_fd; /* Configuration. */ - char *debug_info_dir; + gchar *debug_info_dir; /* Denotes whether the executable is position independent code. */ bool is_pic:1; /* denotes whether the build id in the trace matches to one on disk. */ @@ -76,7 +76,7 @@ struct bin_info { struct source_location { uint64_t line_no; - char *filename; + gchar *filename; }; /**