summaryrefslogtreecommitdiff
path: root/src/debug/debug-pal
diff options
context:
space:
mode:
authorEugene Zemtsov <Eugene.Zemtsov@microsoft.com>2015-03-24 15:34:20 -0700
committerEugene Zemtsov <Eugene.Zemtsov@microsoft.com>2015-03-24 15:34:20 -0700
commit605c23a32aa0389cab0c209bc882017bc6b88f98 (patch)
treee8f5eb1cb3c4c3c314d5e281a5cf765e8c3961d9 /src/debug/debug-pal
parentc23dff6196a0aad2f66531a191de44a499656336 (diff)
downloadcoreclr-605c23a32aa0389cab0c209bc882017bc6b88f98.tar.gz
coreclr-605c23a32aa0389cab0c209bc882017bc6b88f98.tar.bz2
coreclr-605c23a32aa0389cab0c209bc882017bc6b88f98.zip
Make code comments more accurate
Diffstat (limited to 'src/debug/debug-pal')
-rw-r--r--src/debug/debug-pal/unix/dynamiclibaddress.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/debug/debug-pal/unix/dynamiclibaddress.cpp b/src/debug/debug-pal/unix/dynamiclibaddress.cpp
index df41c9a66f..a89fc1d9d3 100644
--- a/src/debug/debug-pal/unix/dynamiclibaddress.cpp
+++ b/src/debug/debug-pal/unix/dynamiclibaddress.cpp
@@ -14,7 +14,8 @@ void *GetDynamicLibraryAddressInProcess(DWORD pid, const char *libraryName)
{
// We don't have proper API detection in debug-pal
-// that's why so far we'll just assume that we run on OS with ProcFS (which is not true on OS)
+// that's why so far we'll just assume that we run on OS with ProcFS (which is not true on Mac OS)
+// TODO: We need to implement this function for Mac OS
#define HAVE_PROCFS_CTL
#ifdef HAVE_PROCFS_CTL