flt.lttng-utils.debug-info: use BT_COMP_LOG*() instead of BT_LOG*()
[babeltrace.git] / src / plugins / lttng-utils / debug-info / bin-info.h
index 98d7fd1f48eed58fca6573e10a57cc4d86754ad2..1d05c495db2b679284d7064c39be5b2be459c248 100644 (file)
@@ -27,7 +27,7 @@
  * SOFTWARE.
  */
 
-#include <babeltrace2/logging.h>
+#include <babeltrace2/babeltrace.h>
 #include <stdint.h>
 #include <stdbool.h>
 #include <gelf.h>
@@ -44,6 +44,9 @@
 struct bin_info {
        bt_logging_level log_level;
 
+       /* Used for logging; can be `NULL` */
+       bt_self_component *self_comp;
+
        /* Base virtual memory address. */
        uint64_t low_addr;
        /* Upper bound of exec address space. */
@@ -93,7 +96,8 @@ struct source_location {
  * @returns            0 on success, -1 on failure
  */
 BT_HIDDEN
-int bin_info_init(bt_logging_level log_level);
+int bin_info_init(bt_logging_level log_level,
+               bt_self_component *self_comp);
 
 /**
  * Instantiate a structure representing an ELF executable, possibly
@@ -114,7 +118,7 @@ BT_HIDDEN
 struct bin_info *bin_info_create(struct bt_fd_cache *fdc, const char *path,
                uint64_t low_addr, uint64_t memsz, bool is_pic,
                const char *debug_info_dir, const char *target_prefix,
-               bt_logging_level log_level);
+               bt_logging_level log_level, bt_self_component *self_comp);
 
 /**
  * Destroy the given bin_info instance
This page took 0.024421 seconds and 4 git commands to generate.