MFC: Support for the detach packet.

This commit is contained in:
jhb 2008-04-28 20:48:42 +00:00
parent f0cccb315e
commit 25b144f188

View File

@ -139,6 +139,11 @@ gdb_trap(int type, int code)
kdb_cpu_clear_singlestep();
return (1);
}
case 'D': { /* Detach */
gdb_tx_ok();
kdb_cpu_clear_singlestep();
return (1);
}
case 'g': { /* Read registers. */
size_t r;
gdb_tx_begin(0);