1 write to name
Microsoft.Build.Engine (1)
LocalProvider\SharedMemory.cs (1)
238this.name = memoryMapName;
4 references to name
Microsoft.Build.Engine (4)
LocalProvider\SharedMemory.cs (4)
276this.unreadBatchCounter = new Semaphore(0, size, this.name + "UnreadBatchCounter"); 277this.fullFlag = new EventWaitHandle(false, EventResetMode.ManualReset, this.name + "FullFlag"); 278this.notFullFlag = new EventWaitHandle(true, EventResetMode.ManualReset, this.name + "NotFullFlag"); 279this.readActionCounter = new Semaphore(0, size + /* for full-flag */ 1, this.name + "ReadActionCounter");