Fix compilation in the case when kernel doesn't have KDB ebabled.

subr_kdb.c still references breakpoint() in this case.
This commit is contained in:
sobomax 2008-10-30 21:02:00 +00:00
parent 1893f5dd32
commit ae5a12cdf1

View File

@ -50,6 +50,13 @@ struct thread;
#ifdef KDB
void breakpoint(void);
#else
static __inline void
breakpoint(void)
{
return;
}
#endif
/* CPU register mangling inlines */