summaryrefslogtreecommitdiff
path: root/apps/include
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-01-31 23:39:12 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-01-31 23:39:12 +0000
commitd9e1bd9b855de8783076cddae7e17177d071a8b5 (patch)
tree4ec59e18f087faba4945cf1bb1d7855d44e82080 /apps/include
parentc0191ed21b7cb6f978fbde31d7e106a8c801ee03 (diff)
downloadnuttx-d9e1bd9b855de8783076cddae7e17177d071a8b5.tar.gz
nuttx-d9e1bd9b855de8783076cddae7e17177d071a8b5.tar.bz2
nuttx-d9e1bd9b855de8783076cddae7e17177d071a8b5.zip
Add on_exit(); Re-order some logic in the task shutdown sequence. Sometimes some complex logic needs to execute when closing file descriptors and this needs to happen early while the task is still healthy
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4354 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'apps/include')
-rw-r--r--apps/include/netutils/telnetd.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/apps/include/netutils/telnetd.h b/apps/include/netutils/telnetd.h
index f875a5edc..4cddd92dd 100644
--- a/apps/include/netutils/telnetd.h
+++ b/apps/include/netutils/telnetd.h
@@ -47,9 +47,6 @@
****************************************************************************/
/* CONFIG_TELNETD_CONSOLE - Use the first telnet session as the default
* console.
- * CONFIG_TELNETD_NPOLLWAITERS - If the poll method is enabled, then this
- * value will defined the maximum number of threads that can be waiting
- * for events. Default: 1
* CONFIG_TELNETD_RXBUFFER_SIZE - The size of the telnet receive buffer.
* Default: 256 bytes.
* CONFIG_TELNETD_TXBUFFER_SIZE - The size of the telnet transmit buffer.
@@ -57,12 +54,6 @@
* CONFIG_TELNETD_DUMPBUFFER - dumping of all input/output buffers.
*/
-#ifndef CONFIG_TELNETD_NPOLLWAITERS
-# define CONFIG_TELNETD_NPOLLWAITERS 1
-#endif
-
-/* Configurable settings */
-
#ifndef CONFIG_TELNETD_RXBUFFER_SIZE
# define CONFIG_TELNETD_RXBUFFER_SIZE 256
#endif