diff options
author | Austin Wise <AustinWise@gmail.com> | 2018-10-07 20:16:45 -0700 |
---|---|---|
committer | Jan Kotas <jkotas@microsoft.com> | 2018-10-07 20:16:45 -0700 |
commit | e57c4fb8ff2346d5420247183b9af2b83184516c (patch) | |
tree | 886b1626e74b7e8c05b7f59197431160ba9bafa0 /src/dlls | |
parent | eeef1c1379b9f49261f66093b355ac8c12e47485 (diff) | |
download | coreclr-e57c4fb8ff2346d5420247183b9af2b83184516c.tar.gz coreclr-e57c4fb8ff2346d5420247183b9af2b83184516c.tar.bz2 coreclr-e57c4fb8ff2346d5420247183b9af2b83184516c.zip |
Remove mention of rotor from comments (#20297)
* Remove old reference to Rotor in documentation.
All remaining references relate to rotor's role in CoreCLR history.
* Remove rotor comment from enummem.cpp.
I can find no evidence that the presence of g_pStressLog is conditional
on FEATURE_PAL being defined.
* Remove old todo, DbgDllMain looks for thread detach.
* Update nativepipeline.h comment refernce to rotor.
All unix-like systems except android have FEATURE_DBGIPC_TRANSPORT_DI
defined, hence "most unix-like platforms".
* Update some comments to not refer to Rotor.
* Remove some more references to Rotor from comments.
* Remove old comment.
Though maybe this macro should be removed and everywhere use the & operator.
It appears there are only two places that use this macro.
Diffstat (limited to 'src/dlls')
-rw-r--r-- | src/dlls/mscordbi/mscordbi.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/dlls/mscordbi/mscordbi.cpp b/src/dlls/mscordbi/mscordbi.cpp index 0197d13d06..94b4dc473d 100644 --- a/src/dlls/mscordbi/mscordbi.cpp +++ b/src/dlls/mscordbi/mscordbi.cpp @@ -21,9 +21,6 @@ extern BOOL WINAPI DbgDllMain(HINSTANCE hInstance, DWORD dwReason, extern "C" BOOL WINAPI DllMain(HINSTANCE hInstance, DWORD dwReason, LPVOID lpReserved) { - //<TODO> Shoud we call DisableThreadLibraryCalls? Or does this code - // need native thread attatch/detatch notifications? </TODO> - // Defer to the main debugging code. return DbgDllMain(hInstance, dwReason, lpReserved); } |