summaryrefslogtreecommitdiff
path: root/src/debug/debugger-int.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/debug/debugger-int.h')
-rw-r--r--src/debug/debugger-int.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/debug/debugger-int.h b/src/debug/debugger-int.h
index 490b35c..f6f51ad 100644
--- a/src/debug/debugger-int.h
+++ b/src/debug/debugger-int.h
@@ -44,6 +44,9 @@ typedef bool (* resume_debugger_fc) (GBinaryDebugger *);
/* Fournit les identifiants de tous les threads actifs. */
typedef pid_t * (* dbg_list_all_threads_fc) (GBinaryDebugger *, char ***, size_t *);
+/* Fournit la liste des frames courantes d'un thread donné. */
+typedef dbg_frame_t * (* dbg_get_frames_stack_fc) (GBinaryDebugger *, pid_t, size_t *);
+
/* Fournit la valeur des registres de l'architecture. */
typedef register_value * (* get_register_values_fc) (GBinaryDebugger *, size_t *);
@@ -63,6 +66,7 @@ struct _GBinaryDebugger
basic_debugger_fc kill; /* Tue le débogueur */
dbg_list_all_threads_fc all_threads; /* Liste des threads actifs */
+ dbg_get_frames_stack_fc frames_stack; /* Pile des frames courantes */
get_register_values_fc get_reg_values; /* Obtient les valeurs de reg. */