summaryrefslogtreecommitdiff
path: root/src/debug/debugger.c
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2010-12-08 23:29:18 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2010-12-08 23:29:18 (GMT)
commit544dfe87adfe15c8588ccffea712672e1b7c4179 (patch)
tree573d0e865741fdd8272738a3e041852d877a083c /src/debug/debugger.c
parent78b82a19a4f45cfd57f3cea7faf34968f86fb160 (diff)
Deleted the useless ptrace() based debugger for portability.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@200 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/debug/debugger.c')
-rw-r--r--src/debug/debugger.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/debug/debugger.c b/src/debug/debugger.c
index a7d7470..7f66a0b 100644
--- a/src/debug/debugger.c
+++ b/src/debug/debugger.c
@@ -25,7 +25,6 @@
#include "debugger-int.h"
#include "remgdb/gdb.h"
-#include "ptrace/ptrace.h"
#include "../gtkext/iodamarshal.h"
@@ -117,10 +116,6 @@ GBinaryDebugger *g_new_binary_debugger(DebuggerType type, GOpenidaBinary *binary
result = g_gdb_debugger_new(binary, NULL);
break;
- case DGT_PTRACE:
- result = g_object_new(G_TYPE_PTRACE_DEBUGGER, NULL);
- break;
-
default:
result = NULL;
break;