diff options
-rw-r--r-- | sys/amd64/amd64/trap.c | 1 | ||||
-rw-r--r-- | sys/i386/i386/trap.c | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/sys/amd64/amd64/trap.c b/sys/amd64/amd64/trap.c index 6c31c29..23a30cc8 100644 --- a/sys/amd64/amd64/trap.c +++ b/sys/amd64/amd64/trap.c @@ -468,7 +468,6 @@ trap(struct trapframe *frame) * Otherwise, debugger traps "can't happen". */ #ifdef KDB - /* XXX Giant */ if (kdb_trap(type, 0, frame)) goto out; #endif diff --git a/sys/i386/i386/trap.c b/sys/i386/i386/trap.c index 3fb3d2c..83fe391 100644 --- a/sys/i386/i386/trap.c +++ b/sys/i386/i386/trap.c @@ -617,7 +617,6 @@ trap(struct trapframe *frame) * Otherwise, debugger traps "can't happen". */ #ifdef KDB - /* XXX Giant */ if (kdb_trap(type, 0, frame)) goto out; #endif |