Skip to content

Commit 82507f1

Browse files
OmarEmaraDevclayborg
authored andcommitted
[LLDB][GUI] Add Process Launch form
This patch adds a process launch form. Additionally, a LazyBoolean field was implemented and numerous utility methods were added to various fields to get the launch form working. Differential Revision: https://reviews.llvm.org/D107869
1 parent 643f2be commit 82507f1

File tree

3 files changed

+550
-5
lines changed

3 files changed

+550
-5
lines changed

lldb/include/lldb/Target/Target.h

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,16 @@ class TargetProperties : public Properties {
122122

123123
void SetRunArguments(const Args &args);
124124

125+
// Get the whole environment including the platform inherited environment and
126+
// the target specific environment, excluding the unset environment variables.
125127
Environment GetEnvironment() const;
128+
// Get the platform inherited environment, excluding the unset environment
129+
// variables.
130+
Environment GetInheritedEnvironment() const;
131+
// Get the target specific environment only, without the platform inherited
132+
// environment.
133+
Environment GetTargetEnvironment() const;
134+
// Set the target specific environment.
126135
void SetEnvironment(Environment env);
127136

128137
bool GetSkipPrologue() const;

0 commit comments

Comments
 (0)