We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 19e5457 commit ce33b5bCopy full SHA for ce33b5b
src/coreclr/vm/ceemain.cpp
@@ -1782,7 +1782,7 @@ static void OsAttachThread(void* thread)
1782
1783
if (threadFromCurrentFiber != NULL)
1784
{
1785
- _ASSERTE("Multiple threads encountered from a single fiber");
+ _ASSERTE(!"Multiple threads encountered from a single fiber");
1786
COMPlusThrowWin32();
1787
}
1788
@@ -1812,7 +1812,7 @@ bool OsDetachThread(void* thread)
1812
1813
if (threadFromCurrentFiber != thread)
1814
1815
- _ASSERTE("Detaching a thread from the wrong fiber");
+ _ASSERTE(!"Detaching a thread from the wrong fiber");
1816
1817
1818
0 commit comments