mirror of
https://github.com/intel/llvm.git
synced 2026-01-16 05:32:28 +08:00
Added the ability for a process to inherit the current host environment. This
was done as an settings variable in the process for now. We will eventually move all environment stuff over to the target, but we will leave it with the process for now. The default setting is for a process to inherit the host environment. This can be disabled by setting the "inherit-env" setting to false in the process. llvm-svn: 120862
This commit is contained in:
@@ -1045,7 +1045,7 @@ Thread::SettingsController::CreateInstanceSettings (const char *instance_name)
|
||||
//--------------------------------------------------------------
|
||||
|
||||
ThreadInstanceSettings::ThreadInstanceSettings (UserSettingsController &owner, bool live_instance, const char *name) :
|
||||
InstanceSettings (owner, (name == NULL ? InstanceSettings::InvalidName().AsCString() : name), live_instance),
|
||||
InstanceSettings (owner, name ? name : InstanceSettings::InvalidName().AsCString(), live_instance),
|
||||
m_avoid_regexp_ap (),
|
||||
m_trace_enabled (false)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user