summaryrefslogtreecommitdiff
path: root/src/arch/context-int.h
diff options
context:
space:
mode:
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*/
+
};