-
Notifications
You must be signed in to change notification settings - Fork 4.9k
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
like #24694,Interlocked.CompareExchange/Exchange still missing for UIntPtr #45103
Labels
Milestone
Comments
This should be higher priority now that there is the |
+1 I was just looking for |
namespace System.Threading
{
public static class Interlocked
{
public static extern UIntPtr CompareExchange(ref UIntPtr location1, UIntPtr value, UIntPtr comparand);
public static extern UIntPtr Exchange(ref UIntPtr location1, UIntPtr value);
}
} |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Labels
Background and Motivation
.net5 adds support for native int(nint and nuint), System.Threading.Interlocked should support them too
Proposed API
The text was updated successfully, but these errors were encountered: