Update error message; detach-keeps-stopped is also not on FreeBSD

llvm-svn: 185549
This commit is contained in:
Ed Maste 2013-07-03 16:26:34 +00:00
parent b8859f6791
commit 1875776e68

View File

@ -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;
}