Use lldbg() instead of dbg() in interrupt level logic

git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@2054 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
patacongo
2009-09-15 15:44:14 +00:00
parent ca7e2543e7
commit 59acff806c
27 changed files with 166 additions and 124 deletions
+2 -2
View File
@@ -92,7 +92,7 @@ static uint16 netclose_interrupt(struct uip_driver_s *dev, void *pvconn,
{
struct tcp_close_s *pstate = (struct tcp_close_s *)pvpriv;
nvdbg("flags: %04x\n", flags);
nllvdbg("flags: %04x\n", flags);
if (pstate)
{
@@ -108,7 +108,7 @@ static uint16 netclose_interrupt(struct uip_driver_s *dev, void *pvconn,
pstate->cl_cb->priv = NULL;
pstate->cl_cb->event = NULL;
sem_post(&pstate->cl_sem);
nvdbg("Resuming\n");
nllvdbg("Resuming\n");
}
else
{