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:
Maxim Sobolev 2008-10-30 21:02:00 +00:00
parent 3239bc5923
commit b5f9b5b875

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 */