diff options
Diffstat (limited to 'src/debug')
-rw-r--r-- | src/debug/debugger-int.h | 2 | ||||
-rw-r--r-- | src/debug/debugger.c | 2 | ||||
-rw-r--r-- | src/debug/debugger.h | 2 | ||||
-rw-r--r-- | src/debug/jdwp/debugger.c | 2 | ||||
-rw-r--r-- | src/debug/jdwp/debugger.h | 2 | ||||
-rw-r--r-- | src/debug/remgdb/gdb.c | 2 | ||||
-rw-r--r-- | src/debug/remgdb/gdb.h | 2 |
7 files changed, 7 insertions, 7 deletions
diff --git a/src/debug/debugger-int.h b/src/debug/debugger-int.h index f6f51ad..c978731 100644 --- a/src/debug/debugger-int.h +++ b/src/debug/debugger-int.h @@ -56,7 +56,7 @@ struct _GBinaryDebugger { GObject parent; /* A laisser en premier */ - GOpenidaBinary *binary; /* Cible à traiter */ + GLoadedBinary *binary; /* Cible à traiter */ attach_debugger_fc attach; /* Démarre le débogueur */ diff --git a/src/debug/debugger.c b/src/debug/debugger.c index 73b8719..19f4f65 100644 --- a/src/debug/debugger.c +++ b/src/debug/debugger.c @@ -108,7 +108,7 @@ static void g_binary_debugger_init(GBinaryDebugger *debugger) * * ******************************************************************************/ -GBinaryDebugger *g_new_binary_debugger(DebuggerType type, GOpenidaBinary *binary) +GBinaryDebugger *g_new_binary_debugger(DebuggerType type, GLoadedBinary *binary) { GBinaryDebugger *result; diff --git a/src/debug/debugger.h b/src/debug/debugger.h index 7a6459b..e4c9458 100644 --- a/src/debug/debugger.h +++ b/src/debug/debugger.h @@ -85,7 +85,7 @@ typedef struct _GBinaryDebuggerClass GBinaryDebuggerClass; GType g_binary_debugger_get_type(void); /* Crée un nouveau débogueur. */ -GBinaryDebugger *g_new_binary_debugger(DebuggerType, GOpenidaBinary *); +GBinaryDebugger *g_new_binary_debugger(DebuggerType, GLoadedBinary *); /* Démarre une procédure de débogage. */ bool g_binary_debugger_attach(GBinaryDebugger *); diff --git a/src/debug/jdwp/debugger.c b/src/debug/jdwp/debugger.c index b416840..d63c068 100644 --- a/src/debug/jdwp/debugger.c +++ b/src/debug/jdwp/debugger.c @@ -147,7 +147,7 @@ static void g_java_debugger_init(GJavaDebugger *debugger) * * ******************************************************************************/ -GBinaryDebugger *g_java_debugger_new(GOpenidaBinary *binary, void *options) +GBinaryDebugger *g_java_debugger_new(GLoadedBinary *binary, void *options) { GBinaryDebugger *result; /* Débogueur à retourner */ diff --git a/src/debug/jdwp/debugger.h b/src/debug/jdwp/debugger.h index c19a415..69a1545 100644 --- a/src/debug/jdwp/debugger.h +++ b/src/debug/jdwp/debugger.h @@ -51,7 +51,7 @@ typedef struct _GJavaDebuggerClass GJavaDebuggerClass; GType g_java_debugger_get_type(void); /* Crée un débogueur utilisant un serveur Java distant. */ -GBinaryDebugger *g_java_debugger_new(GOpenidaBinary *, void *); +GBinaryDebugger *g_java_debugger_new(GLoadedBinary *, void *); void test_java(void); diff --git a/src/debug/remgdb/gdb.c b/src/debug/remgdb/gdb.c index caff762..681ff00 100644 --- a/src/debug/remgdb/gdb.c +++ b/src/debug/remgdb/gdb.c @@ -149,7 +149,7 @@ static void g_gdb_debugger_init(GGdbDebugger *debugger) * * ******************************************************************************/ -GBinaryDebugger *g_gdb_debugger_new(GOpenidaBinary *binary, void *options) +GBinaryDebugger *g_gdb_debugger_new(GLoadedBinary *binary, void *options) { GBinaryDebugger *result; /* Débogueur à retourner */ diff --git a/src/debug/remgdb/gdb.h b/src/debug/remgdb/gdb.h index 6cda59e..30ee2f0 100644 --- a/src/debug/remgdb/gdb.h +++ b/src/debug/remgdb/gdb.h @@ -51,7 +51,7 @@ typedef struct _GGdbDebuggerClass GGdbDebuggerClass; GType g_gdb_debugger_get_type(void); /* Crée un débogueur utilisant un serveur GDB distant. */ -GBinaryDebugger *g_gdb_debugger_new(GOpenidaBinary *, void *); +GBinaryDebugger *g_gdb_debugger_new(GLoadedBinary *, void *); void test_gdb(void); |