-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenvironment_variables_util.cpp
46 lines (36 loc) · 962 Bytes
/
environment_variables_util.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/*
* Copyright The OpenTelemetry Authors
* SPDX-License-Identifier: Apache-2.0
*/
#include "environment_variables_util.h"
namespace trace
{
bool DisableOptimizations()
{
CheckIfTrue(GetEnvironmentValue(environment::clr_disable_optimizations));
}
bool EnableInlining()
{
ToBooleanWithDefault(GetEnvironmentValue(environment::clr_enable_inlining), true);
}
bool IsNGENEnabled()
{
ToBooleanWithDefault(GetEnvironmentValue(environment::clr_enable_ngen), false);
}
bool IsDumpILRewriteEnabled()
{
CheckIfTrue(GetEnvironmentValue(environment::dump_il_rewrite_enabled));
}
bool IsAzureAppServices()
{
CheckIfTrue(GetEnvironmentValue(environment::azure_app_services));
}
bool IsFailFastEnabled()
{
CheckIfTrue(GetEnvironmentValue(environment::fail_fast_enabled));
}
bool IsNetFxAssemblyRedirectionEnabled()
{
ToBooleanWithDefault(GetEnvironmentValue(environment::netfx_assembly_redirection_enabled), true);
}
} // namespace trace