Remove unnecessary/inappropriate output-printing functions from

the API.

llvm-svn: 113993
This commit is contained in:
Caroline Tice
2010-09-15 18:29:06 +00:00
parent 46b96c4ba0
commit 3f12e8efc1
15 changed files with 7 additions and 335 deletions

View File

@@ -342,13 +342,13 @@ SBProcess::AttachByName (const char *name, bool wait_for_launch)
}
lldb::pid_t
SBProcess::AttachByPID (lldb::pid_t attach_pid) // DEPRECATED: will be removed in a few builds in favor of SBError AttachByPID(pid_t)
SBProcess::AttachByPID (lldb::pid_t attach_pid) // DEPRECATED: will be removed in a few builds in favor of SBError AttachByPID(pid_t)
{
Attach (attach_pid);
return GetProcessID();
}
SBError
SBProcess::Attach (lldb::pid_t attach_pid)
{