summaryrefslogtreecommitdiff
path: root/src/inc
diff options
context:
space:
mode:
authorMike McLaughlin <mikem@microsoft.com>2018-01-05 18:14:21 -0800
committerGitHub <noreply@github.com>2018-01-05 18:14:21 -0800
commit8b2cac974db3edde38e1a555455f53592d03b68e (patch)
tree6d12b48ec1d71436c1208c9ec119a4012a459876 /src/inc
parent2c226c48f42438e0742ff9293fbfb4d5c7a1e864 (diff)
downloadcoreclr-8b2cac974db3edde38e1a555455f53592d03b68e.tar.gz
coreclr-8b2cac974db3edde38e1a555455f53592d03b68e.tar.bz2
coreclr-8b2cac974db3edde38e1a555455f53592d03b68e.zip
Change just-in-time debugging registry keys. (#15722)
From "SOFTWARE\Microsoft\Windows NT\CurrentVersion\AeDebug" to "SOFTWARE\Microsoft\.NETCore\JITDebugging".
Diffstat (limited to 'src/inc')
-rw-r--r--src/inc/utilcode.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/inc/utilcode.h b/src/inc/utilcode.h
index d7676cb86a..457091ab03 100644
--- a/src/inc/utilcode.h
+++ b/src/inc/utilcode.h
@@ -4248,10 +4248,10 @@ void AdjustImageRuntimeVersion (SString* pVersion);
SELECTANY const WCHAR kDebugApplicationsPoliciesKey[] = W("SOFTWARE\\Policies\\Microsoft\\Windows\\Windows Error Reporting\\DebugApplications");
SELECTANY const WCHAR kDebugApplicationsKey[] = W("SOFTWARE\\Microsoft\\Windows\\Windows Error Reporting\\DebugApplications");
-SELECTANY const WCHAR kUnmanagedDebuggerKey[] = W("SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\AeDebug");
+SELECTANY const WCHAR kUnmanagedDebuggerKey[] = W("SOFTWARE\\Microsoft\\.NETCore\\JITDebugging");
SELECTANY const WCHAR kUnmanagedDebuggerValue[] = W("Debugger");
SELECTANY const WCHAR kUnmanagedDebuggerAutoValue[] = W("Auto");
-SELECTANY const WCHAR kUnmanagedDebuggerAutoExclusionListKey[] = W("SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\AeDebug\\AutoExclusionList");
+SELECTANY const WCHAR kUnmanagedDebuggerAutoExclusionListKey[] = W("SOFTWARE\\Microsoft\\.NETCore\\JITDebugging\\AutoExclusionList");
BOOL GetRegistryLongValue(HKEY hKeyParent, // Parent key.
LPCWSTR szKey, // Key name to look at.