[Lldb-commits] [lldb] r185549 - Update error message; detach-keeps-stopped is also not on FreeBSD
Ed Maste
emaste at freebsd.org
Wed Jul 3 09:26:35 PDT 2013
Author: emaste
Date: Wed Jul 3 11:26:34 2013
New Revision: 185549
URL: http://llvm.org/viewvc/llvm-project?rev=185549&view=rev
Log:
Update error message; detach-keeps-stopped is also not on FreeBSD
Modified:
lldb/trunk/source/Plugins/Process/POSIX/ProcessPOSIX.cpp
Modified: lldb/trunk/source/Plugins/Process/POSIX/ProcessPOSIX.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Process/POSIX/ProcessPOSIX.cpp?rev=185549&r1=185548&r2=185549&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Process/POSIX/ProcessPOSIX.cpp (original)
+++ lldb/trunk/source/Plugins/Process/POSIX/ProcessPOSIX.cpp Wed Jul 3 11:26:34 2013
@@ -313,9 +313,9 @@ ProcessPOSIX::DoDetach(bool keep_stopped
Error error;
if (keep_stopped)
{
- // FIXME: If you want to implement keep_stopped on Linux,
+ // FIXME: If you want to implement keep_stopped,
// this would be the place to do it.
- error.SetErrorString("Detaching with keep_stopped true is not currently supported on Linux.");
+ error.SetErrorString("Detaching with keep_stopped true is not currently supported on this platform.");
return error;
}
More information about the lldb-commits
mailing list