summaryrefslogtreecommitdiff
path: root/nuttx/ChangeLog
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2009-09-11 19:31:52 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2009-09-11 19:31:52 +0000
commita9fda6c0afe5659aa78c92f3b12d3d2bd38bba65 (patch)
tree73408179fdc50341857372673bcb5a51041235d8 /nuttx/ChangeLog
parent163c619378cab13dce25ab7c933aee34749353ab (diff)
downloadnuttx-a9fda6c0afe5659aa78c92f3b12d3d2bd38bba65.tar.gz
nuttx-a9fda6c0afe5659aa78c92f3b12d3d2bd38bba65.tar.bz2
nuttx-a9fda6c0afe5659aa78c92f3b12d3d2bd38bba65.zip
Fix race condition that can cause close of socket to hang
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@2037 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/ChangeLog')
-rw-r--r--nuttx/ChangeLog3
1 files changed, 3 insertions, 0 deletions
diff --git a/nuttx/ChangeLog b/nuttx/ChangeLog
index b26a42e3a..93150d588 100644
--- a/nuttx/ChangeLog
+++ b/nuttx/ChangeLog
@@ -860,3 +860,6 @@
bug in polling for connections. The logic worked if the poll was inplace
before the connection was received; but the poll failed to awaken if the
connection was already pending in the backlog when poll() was called.
+ * net/net_close.c. Fixed another important TCP/IP race condition bug: If
+ the host closes the TCP connection just before the target calls close(), then
+ the close operation may hang indefinitely!