-
Notifications
You must be signed in to change notification settings - Fork 5.3k
[mono] More Threading changes #49637
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
Merged
Merged
Changes from all commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
da3fa6a
Move CurrentOSThreadId to shared
CoffeeFlux 8cb11a0
Set t_currentThread in managed
CoffeeFlux 9c03dcb
Remove native abandon_mutexes calls
CoffeeFlux 890b12e
Switch to managed Sleep
CoffeeFlux 6415244
Remove threads shutting_down state
CoffeeFlux a1353ac
Remove more domain usage
CoffeeFlux 2e43058
Move some files to shared per feedback
CoffeeFlux fde1c8e
Re-add shutting_down flag
CoffeeFlux a625280
Eliminate helper method for timeout verification
CoffeeFlux 9242fa5
Remove argument validation in ThreadNative::Sleep
CoffeeFlux 7f95dfc
Abandon mutexes on finalizer thread
CoffeeFlux ce69f53
Rename to thread_exiting
CoffeeFlux b5728ac
Move OnThreadExiting to Thread
CoffeeFlux 068c323
Fix build
CoffeeFlux 69059c6
Build build part 2
CoffeeFlux 3f06b3d
Switch to DynamicDependency
CoffeeFlux 3e3361a
Avoid calling managed while holding a lock
CoffeeFlux 05f3665
Don't leak gchandles
CoffeeFlux 52ea821
Clean up rebase
CoffeeFlux 8dd94e4
Pt 2
CoffeeFlux File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 17 additions & 0 deletions
17
src/libraries/System.Private.CoreLib/src/System/Threading/Thread.Unix.cs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,17 @@ | ||
| // Licensed to the .NET Foundation under one or more agreements. | ||
| // The .NET Foundation licenses this file to you under the MIT license. | ||
|
|
||
| using Microsoft.Win32.SafeHandles; | ||
| using System.Diagnostics; | ||
| using System.Runtime; | ||
| using System.Runtime.InteropServices; | ||
|
|
||
| namespace System.Threading | ||
| { | ||
| public sealed partial class Thread | ||
| { | ||
| internal static void UninterruptibleSleep0() => WaitSubsystem.UninterruptibleSleep0(); | ||
|
|
||
| private static void SleepInternal(int millisecondsTimeout) => WaitSubsystem.Sleep(millisecondsTimeout); | ||
| } | ||
| } |
22 changes: 22 additions & 0 deletions
22
src/libraries/System.Private.CoreLib/src/System/Threading/Thread.Windows.cs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,22 @@ | ||
| // Licensed to the .NET Foundation under one or more agreements. | ||
| // The .NET Foundation licenses this file to you under the MIT license. | ||
|
|
||
| using Microsoft.Win32.SafeHandles; | ||
| using System.Diagnostics; | ||
| using System.Runtime; | ||
| using System.Runtime.CompilerServices; | ||
| using System.Runtime.InteropServices; | ||
|
|
||
| namespace System.Threading | ||
| { | ||
| public sealed partial class Thread | ||
| { | ||
| internal static void UninterruptibleSleep0() => Interop.Kernel32.Sleep(0); | ||
|
|
||
| private static void SleepInternal(int millisecondsTimeout) | ||
| { | ||
| Debug.Assert(millisecondsTimeout >= -1); | ||
| Interop.Kernel32.Sleep((uint)millisecondsTimeout); | ||
| } | ||
| } | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.