summaryrefslogtreecommitdiff
path: root/src/debug/daccess
diff options
context:
space:
mode:
authorEugene Zemtsov <e.zemtsov@gmail.com>2015-04-07 04:15:19 -0700
committerEugene Zemtsov <e.zemtsov@gmail.com>2015-04-07 04:15:19 -0700
commit57f1e08d204dc9af74e3e56375c79e23cf476703 (patch)
treed856a4b27e251125b5f2f88516b19e9e8b8679af /src/debug/daccess
parent552f6215dfbb1581099d990e2266192416167963 (diff)
downloadcoreclr-57f1e08d204dc9af74e3e56375c79e23cf476703.tar.gz
coreclr-57f1e08d204dc9af74e3e56375c79e23cf476703.tar.bz2
coreclr-57f1e08d204dc9af74e3e56375c79e23cf476703.zip
Improve comments and fix Realloc in executable debugger heap
Diffstat (limited to 'src/debug/daccess')
-rw-r--r--src/debug/daccess/dacdbiimpl.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/debug/daccess/dacdbiimpl.cpp b/src/debug/daccess/dacdbiimpl.cpp
index 755b4a0c23..908c31b8aa 100644
--- a/src/debug/daccess/dacdbiimpl.cpp
+++ b/src/debug/daccess/dacdbiimpl.cpp
@@ -480,7 +480,7 @@ BOOL DacDbiInterfaceImpl::IsTransitionStub(CORDB_ADDRESS address)
// Currently IsIPInModule() is not implemented in the PAL. Rather than skipping the check, we should
// either E_NOTIMPL this API or implement IsIPInModule() in the PAL. Since ICDProcess::IsTransitionStub()
// is only called by VS in mixed-mode debugging scenarios, and mixed-mode debugging is not supported on
- // Mac, there is really no incentive to implement this API on Mac at this point.
+ // POSIX systems, there is really no incentive to implement this API at this point.
ThrowHR(E_NOTIMPL);
#else // !FEATURE_PAL
@@ -5621,7 +5621,7 @@ void DacDbiInterfaceImpl::GetContext(VMPTR_Thread vmThread, DT_CONTEXT * pContex
// thread handle. The function to do the conversion is OpenThread(), which is not implemented in PAL.
// Instead, we just zero out the seed CONTEXT for the stackwalk. This tells the stackwalker to
// start the stackwalk with the first explicit frame. This won't work when we do native debugging,
- // but that won't happen on the Linux/Mac since they don't support native debugging.
+ // but that won't happen on the POSIX systems since they don't support native debugging.
ZeroMemory(pContextBuffer, sizeof(*pContextBuffer));
#else // FEATURE_PAL
pContextBuffer->ContextFlags = CONTEXT_ALL;