Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependents: HelloWorld ServoInterfaceBoardExample1 4180_Lab4
Diff: if/net/net.cpp
- Revision:
- 2:a4f97773c90f
- Parent:
- 0:632c9925f013
--- a/if/net/net.cpp Mon Jun 14 10:33:54 2010 +0000
+++ b/if/net/net.cpp Fri Jun 18 09:22:54 2010 +0000
@@ -39,9 +39,12 @@
void Net::poll()
{
+ //DBG("\r\nNet : Services polling\r\n");
//Poll Services
- NetService::servicesPoll();
+ NetService::servicesPoll();
+
+ //DBG("\r\nNet : Interfaces polling\r\n");
//Poll Interfaces
list<NetIf*>::iterator pIfIt;
@@ -51,6 +54,8 @@
(*pIfIt)->poll();
}
+ //DBG("\r\nNet : Sockets polling\r\n");
+
//Poll Tcp Sockets
list<NetTcpSocket*>::iterator pNetTcpSocketIt;