Skip to content
Merged

Fix typo #72398

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,7 @@ private void StartCore()
if (GetThreadStateBit(ThreadState.Unstarted))
{
Exception? startException = _startException;
startException = null;
_startException = null;

throw new ThreadStartException(startException ?? new OutOfMemoryException());
}
Expand Down
3 changes: 2 additions & 1 deletion src/libraries/System.Threading.Thread/tests/ThreadTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,8 @@ public static void ApartmentStateTest_ChangeBeforeThreadStarted_Windows_Nano_Ser
Assert.Equal(setType == 0 ? 0 : 2, setApartmentState(t, ApartmentState.MTA)); // cannot be changed more than once
Assert.Equal(ApartmentState.STA, getApartmentState(t));

Assert.Throws<ThreadStartException>(() => t.Start()); // Windows Nano Server does not support starting threads in the STA.
Exception ex = Assert.Throws<ThreadStartException>(() => t.Start()); // Windows Nano Server does not support starting threads in the STA.
Assert.IsType<PlatformNotSupportedException>(ex.InnerException);
}


Expand Down