Don't use GDB_DBGPORT() macro to fill in dummy element in gdb_dbgport_set.

This commit is contained in:
Poul-Henning Kamp 2006-05-26 11:52:59 +00:00
parent f346afc439
commit e8d86c0e50
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=158949

View File

@ -46,7 +46,8 @@ static dbbe_trap_f gdb_trap;
KDB_BACKEND(gdb, gdb_init, NULL, gdb_trap);
GDB_DBGPORT(null, NULL, NULL, NULL, NULL, NULL, NULL);
static struct gdb_dbgport null_gdb_dbgport;
DATA_SET(gdb_dbgport_set, null_gdb_dbgport);
SET_DECLARE(gdb_dbgport_set, struct gdb_dbgport);
struct gdb_dbgport *gdb_cur = NULL;