lttng: Make use of "is_pic" event field in debug info analysis
[deliverable/tracecompass.git] / lttng / org.eclipse.tracecompass.lttng2.ust.core / src / org / eclipse / tracecompass / internal / lttng2 / ust / core / analysis / debuginfo / UstDebugInfoLoadedBinaryFile.java
index f1c9372dc14b0428100d9380d1ad4de57ff506cf..993af783365936918f8ea21882cac5877d60b220 100644 (file)
@@ -28,9 +28,11 @@ public class UstDebugInfoLoadedBinaryFile extends UstDebugInfoBinaryFile {
      *            The file path of the loaded binary/library
      * @param buildId
      *            The build ID of the binary object
+     * @param isPic
+     *            If the binary is position-independent or not
      */
-    public UstDebugInfoLoadedBinaryFile(long baseAddress, String filePath, String buildId) {
-        super(filePath, buildId);
+    public UstDebugInfoLoadedBinaryFile(long baseAddress, String filePath, String buildId, boolean isPic) {
+        super(filePath, buildId, isPic);
         this.baseAddress = baseAddress;
     }
 
This page took 0.024577 seconds and 5 git commands to generate.