diff options
author | Ed Maste <emaste@freebsd.org> | 2013-07-03 16:26:34 +0000 |
---|---|---|
committer | Ed Maste <emaste@freebsd.org> | 2013-07-03 16:26:34 +0000 |
commit | 1875776e68976e91f6fec0ecbd8d7632d1799120 (patch) | |
tree | c17fae33bf15cd8c06895296e95af389c597180a /lldb/source/Plugins/Process/POSIX/ProcessPOSIX.cpp | |
parent | b8859f6791fb4ca16c0cb3d76bc92fbe7018cac4 (diff) | |
download | bcm5719-llvm-1875776e68976e91f6fec0ecbd8d7632d1799120.tar.gz bcm5719-llvm-1875776e68976e91f6fec0ecbd8d7632d1799120.zip |
Update error message; detach-keeps-stopped is also not on FreeBSD
llvm-svn: 185549
Diffstat (limited to 'lldb/source/Plugins/Process/POSIX/ProcessPOSIX.cpp')
-rw-r--r-- | lldb/source/Plugins/Process/POSIX/ProcessPOSIX.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Plugins/Process/POSIX/ProcessPOSIX.cpp b/lldb/source/Plugins/Process/POSIX/ProcessPOSIX.cpp index 824d797cd79..4e8ed2f8a35 100644 --- a/lldb/source/Plugins/Process/POSIX/ProcessPOSIX.cpp +++ b/lldb/source/Plugins/Process/POSIX/ProcessPOSIX.cpp @@ -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; } |