Woops, I'm so sorry I forgot this! From the last mbuf.h change:

m_mballoc_wakeup() (inline) -> MMBWAKEUP() (macro)
	m_clalloc_wakeup() (inline) -> MCLWAKEUP() (macro)

Noticed by:	peter
This commit is contained in:
green 1999-12-18 20:04:19 +00:00
parent 0ab582e4c1
commit e76a6ba9eb

View File

@ -217,7 +217,7 @@ m_mballoc_wait(int caller, int type)
mbstat.m_wait++;
/* Wake up another if we have more free. */
if (mmbfree != NULL)
m_mballoc_wakeup();
MMBWAKEUP();
}
splx(s);
return (p);
@ -346,7 +346,7 @@ m_clalloc_wait(void)
mbstat.m_wait++;
/* Wake up another if we have more free. */
if (mclfree != NULL)
m_clalloc_wakeup();
MCLWAKEUP();
}
splx(s);