summaryrefslogtreecommitdiff
path: root/src/pal/tests
diff options
context:
space:
mode:
authorMike McLaughlin <mikem@microsoft.com>2018-08-14 00:46:13 -0700
committerJan Vorlicek <janvorli@microsoft.com>2018-08-14 09:46:13 +0200
commitc509903171fedf0a4a6f9fffeb6e2b9820f537c2 (patch)
tree8f36e3b8d25b4089150b1a85df1f8e0af79ed485 /src/pal/tests
parent821016dc0d94c08a40701f75a09a3d355c515579 (diff)
downloadcoreclr-c509903171fedf0a4a6f9fffeb6e2b9820f537c2.tar.gz
coreclr-c509903171fedf0a4a6f9fffeb6e2b9820f537c2.tar.bz2
coreclr-c509903171fedf0a4a6f9fffeb6e2b9820f537c2.zip
Code review feedback for the alternate stack changes (PR #19309). (#19476)
Fixed SOS plugin for core dumps.
Diffstat (limited to 'src/pal/tests')
-rw-r--r--src/pal/tests/palsuite/exception_handling/pal_sxs/test1/dlltest1.cpp2
-rw-r--r--src/pal/tests/palsuite/exception_handling/pal_sxs/test1/dlltest2.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/pal/tests/palsuite/exception_handling/pal_sxs/test1/dlltest1.cpp b/src/pal/tests/palsuite/exception_handling/pal_sxs/test1/dlltest1.cpp
index 8eb10c91ac..0b9d78fa8c 100644
--- a/src/pal/tests/palsuite/exception_handling/pal_sxs/test1/dlltest1.cpp
+++ b/src/pal/tests/palsuite/exception_handling/pal_sxs/test1/dlltest1.cpp
@@ -17,7 +17,7 @@
extern "C"
int InitializeDllTest1()
{
- PAL_SetInitializeDLLFlags(PAL_INITIALIZE_DLL | PAL_INITIALIZE_REGISTER_SIGNALS | PAL_INITIALIZE_ENSURE_ALT_SIGNAL_STACK);
+ PAL_SetInitializeDLLFlags(PAL_INITIALIZE_DLL | PAL_INITIALIZE_REGISTER_SIGNALS);
return PAL_InitializeDLL();
}
diff --git a/src/pal/tests/palsuite/exception_handling/pal_sxs/test1/dlltest2.cpp b/src/pal/tests/palsuite/exception_handling/pal_sxs/test1/dlltest2.cpp
index 5b1d2781d1..1f17b81218 100644
--- a/src/pal/tests/palsuite/exception_handling/pal_sxs/test1/dlltest2.cpp
+++ b/src/pal/tests/palsuite/exception_handling/pal_sxs/test1/dlltest2.cpp
@@ -17,7 +17,7 @@
extern "C"
int InitializeDllTest2()
{
- PAL_SetInitializeDLLFlags(PAL_INITIALIZE_DLL | PAL_INITIALIZE_REGISTER_SIGNALS | PAL_INITIALIZE_ENSURE_ALT_SIGNAL_STACK);
+ PAL_SetInitializeDLLFlags(PAL_INITIALIZE_DLL | PAL_INITIALIZE_REGISTER_SIGNALS);
return PAL_InitializeDLL();
}