Added the ability to display the new "target.process.inherit-env" setting.

llvm-svn: 120863
This commit is contained in:
Greg Clayton 2010-12-04 00:12:24 +00:00
parent 85851dde89
commit 5c5f1a1267
1 changed files with 7 additions and 0 deletions

View File

@ -2814,6 +2814,13 @@ ProcessInstanceSettings::GetInstanceSettingsValue (const SettingEntry &entry,
{
value.AppendString (UserSettingsController::EnumToString (entry.enum_values, (int) m_plugin));
}
else if (var_name == InheritHostEnvVarName())
{
if (m_inherit_host_env)
value.AppendString ("true");
else
value.AppendString ("false");
}
else if (var_name == DisableASLRVarName())
{
if (m_disable_aslr)