Skip to content

Latest commit

 

History

History
9 lines (5 loc) · 388 Bytes

PH_S002.md

File metadata and controls

9 lines (5 loc) · 388 Bytes

PH_S002 - Monitor Discouraged Sync Object

Problem

The use of boxed types and strings as synchronization objects is discouraged. Their use may lead to unexpected effects during synchronization. For example, two unrelated objects may synchronize with each other because of the use of the same string literal.

Solution

Use new object() for synchronization objects of monitors.