When we restart a process, send an updated 'process' event describing the newly launched process. I also updated the `isLocalProcess` value based on if we're on the 'host' platform or not.
8 lines
237 B
OpenEdge ABL
8 lines
237 B
OpenEdge ABL
%extend lldb::SBPlatform {
|
|
#ifdef SWIGPYTHON
|
|
%pythoncode %{
|
|
is_host = property(IsHost, None, doc='''A read only property that returns a boolean value that indiciates if this platform is the host platform.''')
|
|
%}
|
|
#endif
|
|
}
|