Skip to content
Merged
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 @@ -146,7 +146,7 @@ internal static unsafe int CompareExchange(int* location1, int value, int compar
}

[MethodImpl(MethodImplOptions.InternalCall)]
private static unsafe extern int CompareExchange32Pointer(int* location1, int value, int comparand);
private static extern unsafe int CompareExchange32Pointer(int* location1, int value, int comparand);

/// <summary>Compares two 64-bit signed integers for equality and, if they are equal, replaces the first value.</summary>
/// <param name="location1">The destination, whose value is compared with <paramref name="comparand"/> and possibly replaced.</param>
Expand Down
Loading