Skip to content

Commit 6765642

Browse files
committed
tweak comments
1 parent 4f22a13 commit 6765642

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/coreclr/nativeaot/Runtime/EHHelpers.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -548,7 +548,7 @@ int32_t __stdcall RhpVectoredExceptionHandler(PEXCEPTION_POINTERS pExPtrs)
548548
Thread * pThread = ThreadStore::GetCurrentThreadIfAvailable();
549549
if (pThread == NULL || !pThread->IsCurrentThreadInCooperativeMode())
550550
{
551-
// if we are not in coop mode or the thread is not hijacked, this cannot be our hijack
551+
// if we are not in coop mode, this cannot be our hijack
552552
// Perhaps some other runtime is responsible.
553553
return EXCEPTION_CONTINUE_SEARCH;
554554
}

src/coreclr/vm/excep.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6756,8 +6756,8 @@ VEH_ACTION WINAPI CLRVectoredExceptionHandler(PEXCEPTION_POINTERS pExceptionInfo
67566756
{
67576757
if (pThread == NULL || !pThread->PreemptiveGCDisabled())
67586758
{
6759-
// If we are not in coop mode or the thread is not hijacked, this cannot be our hijack.
6760-
// Perhaps someone else is trying to hijack us.
6759+
// if we are not in coop mode, this cannot be our hijack
6760+
// Perhaps some other runtime is responsible.
67616761
return VEH_CONTINUE_SEARCH;
67626762
}
67636763

0 commit comments

Comments
 (0)