Remove uIP logging

git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@377 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
patacongo
2007-11-07 23:26:29 +00:00
parent d622214165
commit f6547ca194
18 changed files with 17 additions and 80 deletions
-13
View File
@@ -102,16 +102,3 @@ int user_start(int argc, char *argv[])
return 0;
}
/****************************************************************************
* uip_log
****************************************************************************/
void uip_log(char *m)
{
/* Since uip_log is called from interrupt handling logic, it cannot use
* or other standard I/O. This should work from an interrupt handler:
*/
lib_rawprintf("uIP log message: %s\n", m);
}
-9
View File
@@ -208,15 +208,6 @@ int user_start(int argc, char *argv[])
return 0;
}
void uip_log(char *m)
{
/* Since uip_log is called from interrupt handling logic, it cannot use
* or other standard I/O. This should work from an interrupt handler:
*/
lib_rawprintf("uIP log message: %s\n", m);
}
#if defined(CONFIG_EXAMPLE_UIP_WEBCLIENT)
void webclient_closed(void)
{