diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2015-01-26 21:37:49 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2015-01-26 21:37:49 (GMT) |
commit | 262c95e0b088a56e9fd919edc57ad19f85e2e40e (patch) | |
tree | 8510a15924423abb3208610f724d911f2f79b9a6 /src/debug | |
parent | 0993276d6450919c6d178182c5fd26497b62d5fc (diff) |
Begun to rewrite the whole plugins system.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@461 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/debug')
-rw-r--r-- | src/debug/debugger.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/debug/debugger.c b/src/debug/debugger.c index a423f76..c268bcf 100644 --- a/src/debug/debugger.c +++ b/src/debug/debugger.c @@ -158,12 +158,15 @@ bool g_binary_debugger_attach(GBinaryDebugger *debugger) if (debugger->attach == NULL) result = true; else result = debugger->attach(debugger); - pglist = get_all_plugins_for_action(PGA_DEBUGGER_ATTACH, &pgcount); + pgcount = 0; + pglist = NULL;//get_all_plugins_for_action(PGA_DEBUGGER_ATTACH, &pgcount); if (pgcount > 0) { + /* for (i = 0; i < pgcount; i++) g_plugin_module_handle_debugger(pglist[i], debugger, PGA_DEBUGGER_ATTACH); + */ free(pglist); |