dbg_register_file[][] now reserves space for SMP_MAX_CPUS CPUs, not only 2.

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@5309 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2003-11-11 04:02:54 +00:00
parent 3d78db8f17
commit 1e065e6132

View File

@ -33,7 +33,8 @@ typedef struct debugger_command {
const char *description;
} debugger_command;
int dbg_register_file[2][14]; /* XXXmpetit -- must be made generic */
int dbg_register_file[SMP_MAX_CPUS][14];
/* XXXmpetit -- must be made generic */
static bool sSerialDebugEnabled = false;
static spinlock dbg_spinlock = 0;