summaryrefslogtreecommitdiff
path: root/src/arch/context-int.h
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2014-12-30 08:25:05 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2014-12-30 08:25:05 (GMT)
commit57d7eff57c20e75aaa4ccd34f1d9d733e12bb232 (patch)
treea60199f7323a31e0bf22b8f8747fdf402f2c481d /src/arch/context-int.h
parent19e1a97fafb1b73d0efcd995b31951daf1a5c661 (diff)
Tracked each binary area during the disassembling process and tried to follow the execution flow.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@445 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/arch/context-int.h')
-rw-r--r--src/arch/context-int.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/arch/context-int.h b/src/arch/context-int.h
index 3a65f79..b181202 100644
--- a/src/arch/context-int.h
+++ b/src/arch/context-int.h
@@ -29,6 +29,10 @@
+/* Ajoute une adresse virtuelle comme point de départ de code. */
+typedef void (* push_drop_point_fc) (GProcContext *, virt_t);
+
+
/* Définition d'un contexte pour processeur (instance) */
struct _GProcContext
{
@@ -45,6 +49,8 @@ struct _GProcContextClass
{
GObjectClass parent; /* A laisser en premier */
+ push_drop_point_fc push_point; /* Inclusion de points de chute*/
+
};