summaryrefslogtreecommitdiff
path: root/src/format/dwarf
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2016-05-19 21:21:30 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2016-05-19 21:21:30 (GMT)
commitf828d126a74facac145531822c6ea9c8259b50e0 (patch)
tree521bfa44de551f30934ee321339a7a87d12a3243 /src/format/dwarf
parente92c777c91612c8508d263645480c6c3889b679d (diff)
Loaded the ELF internal symbols using all the available CPUs.
Diffstat (limited to 'src/format/dwarf')
-rw-r--r--src/format/dwarf/v2/dwarf.c3
-rw-r--r--src/format/dwarf/v2/dwarf.h2
-rw-r--r--src/format/dwarf/v3/dwarf.c3
-rw-r--r--src/format/dwarf/v3/dwarf.h2
-rw-r--r--src/format/dwarf/v4/dwarf.c3
-rw-r--r--src/format/dwarf/v4/dwarf.h2
6 files changed, 9 insertions, 6 deletions
diff --git a/src/format/dwarf/v2/dwarf.c b/src/format/dwarf/v2/dwarf.c
index ccef01f..5e417c3 100644
--- a/src/format/dwarf/v2/dwarf.c
+++ b/src/format/dwarf/v2/dwarf.c
@@ -153,6 +153,7 @@ static void g_dwarfv2_format_finalize(GDwarfV2Format *format)
* *
* Paramètres : content = contenu binaire à parcourir. *
* parent = éventuel format exécutable déjà chargé. *
+ status = barre de statut à tenir informée. *
* *
* Description : Prend en charge un nouveau format DWARF (v2). *
* *
@@ -162,7 +163,7 @@ static void g_dwarfv2_format_finalize(GDwarfV2Format *format)
* *
******************************************************************************/
-GBinFormat *g_dwarfv2_format_new(GBinContent *content, GExeFormat *parent)
+GBinFormat *g_dwarfv2_format_new(GBinContent *content, GExeFormat *parent, GtkStatusStack *status)
{
GDwarfV2Format *result; /* Structure à retourner */
diff --git a/src/format/dwarf/v2/dwarf.h b/src/format/dwarf/v2/dwarf.h
index 360a2e6..732007b 100644
--- a/src/format/dwarf/v2/dwarf.h
+++ b/src/format/dwarf/v2/dwarf.h
@@ -52,7 +52,7 @@ typedef struct _GDwarfV2FormatClass GDwarfV2FormatClass;
GType g_dwarfv2_format_get_type(void);
/* Prend en charge un nouveau format DWARF (v2). */
-GBinFormat *g_dwarfv2_format_new(GBinContent *, GExeFormat *);
+GBinFormat *g_dwarfv2_format_new(GBinContent *, GExeFormat *, GtkStatusStack *);
diff --git a/src/format/dwarf/v3/dwarf.c b/src/format/dwarf/v3/dwarf.c
index d6198f7..0fcd38f 100644
--- a/src/format/dwarf/v3/dwarf.c
+++ b/src/format/dwarf/v3/dwarf.c
@@ -145,6 +145,7 @@ static void g_dwarfv3_format_finalize(GDwarfV3Format *format)
* *
* Paramètres : content = contenu binaire à parcourir. *
* parent = éventuel format exécutable déjà chargé. *
+ status = barre de statut à tenir informée. *
* *
* Description : Prend en charge un nouveau format DWARF (v3). *
* *
@@ -154,7 +155,7 @@ static void g_dwarfv3_format_finalize(GDwarfV3Format *format)
* *
******************************************************************************/
-GBinFormat *g_dwarfv3_format_new(GBinContent *content, GExeFormat *parent)
+GBinFormat *g_dwarfv3_format_new(GBinContent *content, GExeFormat *parent, GtkStatusStack *status)
{
GDwarfV3Format *result; /* Structure à retourner */
diff --git a/src/format/dwarf/v3/dwarf.h b/src/format/dwarf/v3/dwarf.h
index 2aaf891..e316a52 100644
--- a/src/format/dwarf/v3/dwarf.h
+++ b/src/format/dwarf/v3/dwarf.h
@@ -52,7 +52,7 @@ typedef struct _GDwarfV3FormatClass GDwarfV3FormatClass;
GType g_dwarfv3_format_get_type(void);
/* Prend en charge un nouveau format DWARF (v3). */
-GBinFormat *g_dwarfv3_format_new(GBinContent *, GExeFormat *);
+GBinFormat *g_dwarfv3_format_new(GBinContent *, GExeFormat *, GtkStatusStack *);
diff --git a/src/format/dwarf/v4/dwarf.c b/src/format/dwarf/v4/dwarf.c
index 52345e8..995d4f7 100644
--- a/src/format/dwarf/v4/dwarf.c
+++ b/src/format/dwarf/v4/dwarf.c
@@ -153,6 +153,7 @@ static void g_dwarfv4_format_finalize(GDwarfV4Format *format)
* *
* Paramètres : content = contenu binaire à parcourir. *
* parent = éventuel format exécutable déjà chargé. *
+ status = barre de statut à tenir informée. *
* *
* Description : Prend en charge un nouveau format DWARF (v4). *
* *
@@ -162,7 +163,7 @@ static void g_dwarfv4_format_finalize(GDwarfV4Format *format)
* *
******************************************************************************/
-GBinFormat *g_dwarfv4_format_new(GBinContent *content, GExeFormat *parent)
+GBinFormat *g_dwarfv4_format_new(GBinContent *content, GExeFormat *parent, GtkStatusStack *status)
{
GDwarfV4Format *result; /* Structure à retourner */
diff --git a/src/format/dwarf/v4/dwarf.h b/src/format/dwarf/v4/dwarf.h
index af3c2c4..d0f5b7a 100644
--- a/src/format/dwarf/v4/dwarf.h
+++ b/src/format/dwarf/v4/dwarf.h
@@ -52,7 +52,7 @@ typedef struct _GDwarfV4FormatClass GDwarfV4FormatClass;
GType g_dwarfv4_format_get_type(void);
/* Prend en charge un nouveau format DWARF (v4). */
-GBinFormat *g_dwarfv4_format_new(GBinContent *, GExeFormat *);
+GBinFormat *g_dwarfv4_format_new(GBinContent *, GExeFormat *, GtkStatusStack *);