Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typo #72398

Merged
merged 1 commit into from
Jul 19, 2022
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