diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2015-02-09 20:15:52 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2015-02-09 20:15:52 (GMT) |
commit | 8d326041a0379b87e54be44506d544367567e89b (patch) | |
tree | a3c3555c27c30858155fbee4df0ca236f33774f8 /src/panels | |
parent | b70f428256963385a140e9eb503624106df5aa9b (diff) |
Registered all the supported processors in the system code.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@467 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/panels')
-rw-r--r-- | src/panels/breaks.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/panels/breaks.c b/src/panels/breaks.c index 4bdac36..18b5a17 100644 --- a/src/panels/breaks.c +++ b/src/panels/breaks.c @@ -321,6 +321,7 @@ static void add_bp_group_to_breaks_panel(GLoadedBinary *binary, GBreakGroup *gro static void refresh_breaks_panel_on_bp_added(GBreakGroup *group, GBreakPoint *point, GBreaksPanel *panel) { +#if 0 GExeFormat *format; /* Format associé au binaire */ GArchProcessor *proc; /* Architecture utilisée */ char address[VMPA_MAX_SIZE]; /* Conversion de l'adresse */ @@ -342,7 +343,7 @@ static void refresh_breaks_panel_on_bp_added(GBreakGroup *group, GBreakPoint *po /* Pour le reste... */ refresh_breaks_panel_on_bp_changed(group, point, panel); - +#endif } |