summaryrefslogtreecommitdiff
path: root/src/project.c
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2011-01-06 01:22:24 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2011-01-06 01:22:24 (GMT)
commitcb8d8fb7a69dfd7ef03585d921ddccfc452f39de (patch)
treeaf7d552e0e9e1ae5f8723ba4660f7d3ff2c6e4dc /src/project.c
parentee2e35f6dced8340682eab8cb013ba2911858c53 (diff)
Attached the debugger to a given target.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@207 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/project.c')
-rw-r--r--src/project.c36
1 files changed, 36 insertions, 0 deletions
diff --git a/src/project.c b/src/project.c
index 70cbef1..60767be 100644
--- a/src/project.c
+++ b/src/project.c
@@ -614,6 +614,42 @@ const GOpenidaBinary **get_openida_project_binaries(const openida_project *proje
+
+
+/******************************************************************************
+* *
+* Paramètres : project = projet à consulter. *
+* binary = binaire chargé, encadré et concerné. *
+* *
+* Description : Fournit un module de débogage prêt à emploi. *
+* *
+* Retour : Instance prête à devenir effective. *
+* *
+* Remarques : - *
+* *
+******************************************************************************/
+
+GBinaryDebugger *get_main_debugger_for_binary(const openida_project *project, const GOpenidaBinary *binary)
+{
+ return g_java_debugger_new(binary, NULL); /* FIXME */
+
+}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
/* ---------------------------------------------------------------------------------- */
/* PARTIE GRAPHIQUE DES [DE]CHARGEMENTS */
/* ---------------------------------------------------------------------------------- */