<rdar://problem/13009943>
authorGreg Clayton <gclayton@apple.com>
Wed, 16 Jan 2013 17:29:04 +0000 (17:29 +0000)
committerGreg Clayton <gclayton@apple.com>
Wed, 16 Jan 2013 17:29:04 +0000 (17:29 +0000)
commit949e82216c5c15270e5931c4d213401f9f675f2d
treecbc68994eb303a3bf8cc1f3535ca02b89cbde476
parenta51c6ed608dc6372bd20eccc27d09064751e82d8
<rdar://problem/13009943>

Added a unique integer identifier to processes. Some systems, like JTAG or other simulators, might always assign the same process ID (pid) to the processes that are being debugged. In order for scripts and the APIs to uniquely identify the processes, there needs to be another ID. Now the SBProcess class has:

uint32_t SBProcess::GetUniqueID();

This integer ID will help to truly uniquely identify a process and help with appropriate caching that can be associated with a SBProcess object.

llvm-svn: 172628
lldb/include/lldb/API/SBProcess.h
lldb/include/lldb/Target/Process.h
lldb/scripts/Python/interface/SBProcess.i
lldb/source/API/SBProcess.cpp
lldb/source/Target/Process.cpp