[Lldb-commits] [lldb] r132270 - /lldb/trunk/source/Core/ConnectionFileDescriptor.cpp
Greg Clayton
gclayton at apple.com
Sat May 28 17:45:15 PDT 2011
Author: gclayton
Date: Sat May 28 19:45:15 2011
New Revision: 132270
URL: http://llvm.org/viewvc/llvm-project?rev=132270&view=rev
Log:
Fixed an issue that could cause LLDB to spin indefinitely.
Modified:
lldb/trunk/source/Core/ConnectionFileDescriptor.cpp
Modified: lldb/trunk/source/Core/ConnectionFileDescriptor.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Core/ConnectionFileDescriptor.cpp?rev=132270&r1=132269&r2=132270&view=diff
==============================================================================
--- lldb/trunk/source/Core/ConnectionFileDescriptor.cpp (original)
+++ lldb/trunk/source/Core/ConnectionFileDescriptor.cpp Sat May 28 19:45:15 2011
@@ -245,6 +245,7 @@
status = eConnectionStatusError;
break; // Break to close....
+ case ENOENT: // no such file or directory
case EBADF: // fildes is not a valid file or socket descriptor open for reading.
case ENXIO: // An action is requested of a device that does not exist..
// A requested action cannot be performed by the device.
More information about the lldb-commits
mailing list