Pass a process full executable path within "name" response field.

http://reviews.llvm.org/D8239

llvm-svn: 231949
This commit is contained in:
Oleksiy Vyalov 2015-03-11 18:13:37 +00:00
parent d61a6fd8ed
commit bac75698d4
1 changed files with 1 additions and 1 deletions

View File

@ -1195,7 +1195,7 @@ GDBRemoteCommunicationServerCommon::CreateProcessInfoResponse (const ProcessInst
proc_info.GetEffectiveUserID(),
proc_info.GetEffectiveGroupID());
response.PutCString ("name:");
response.PutCStringAsRawHex8(proc_info.GetName());
response.PutCStringAsRawHex8(proc_info.GetExecutableFile().GetPath().c_str());
response.PutChar(';');
const ArchSpec &proc_arch = proc_info.GetArchitecture();
if (proc_arch.IsValid())