Skip to content
Closed
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 @@ -30,7 +30,7 @@ public class SemaphoreSlim : IDisposable

// The semaphore count, initialized in the constructor to the initial value, every release call increments it
// and every wait call decrements it as long as its value is positive otherwise the wait will block.
// Its value must be between the maximum semaphore value and zero
// Its value must be between the maximum semaphore value and zero.
private volatile int m_currentCount;

// The maximum semaphore value, it is initialized to Int.MaxValue if the client didn't specify it. it is used
Expand Down
Loading