summaryrefslogtreecommitdiff
path: root/nuttx/net/connect.c
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2009-09-15 15:44:14 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2009-09-15 15:44:14 +0000
commite2af7aac95b860422eb445bc6e85e18eff118819 (patch)
tree4466048286266204110cf0a20931493391ef0f93 /nuttx/net/connect.c
parenta3f9769a1e25b60594eb5563779c53d602f25ddd (diff)
downloadpx4-nuttx-e2af7aac95b860422eb445bc6e85e18eff118819.tar.gz
px4-nuttx-e2af7aac95b860422eb445bc6e85e18eff118819.tar.bz2
px4-nuttx-e2af7aac95b860422eb445bc6e85e18eff118819.zip
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
Diffstat (limited to 'nuttx/net/connect.c')
-rw-r--r--nuttx/net/connect.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/nuttx/net/connect.c b/nuttx/net/connect.c
index b530fd4d8..16f3e3583 100644
--- a/nuttx/net/connect.c
+++ b/nuttx/net/connect.c
@@ -113,7 +113,7 @@ static void connection_event(struct uip_conn *conn, uint16 flags)
if (psock)
{
- nvdbg("flags: %04x s_flags: %02x\n", flags, psock->s_flags);
+ nllvdbg("flags: %04x s_flags: %02x\n", flags, psock->s_flags);
/* UIP_CLOSE: The remote host has closed the connection
* UIP_ABORT: The remote host has aborted the connection
@@ -227,7 +227,7 @@ static uint16 tcp_connect_interrupt(struct uip_driver_s *dev, void *pvconn,
{
struct tcp_connect_s *pstate = (struct tcp_connect_s *)pvpriv;
- nvdbg("flags: %04x\n", flags);
+ nllvdbg("flags: %04x\n", flags);
/* 'priv' might be null in some race conditions (?) */
@@ -283,7 +283,7 @@ static uint16 tcp_connect_interrupt(struct uip_driver_s *dev, void *pvconn,
return flags & ~UIP_NEWDATA;
}
- nvdbg("Resuming: %d\n", pstate->tc_result);
+ nllvdbg("Resuming: %d\n", pstate->tc_result);
/* Stop further callbacks */