Content deleted Content added
AdamPark85 (talk | contribs) |
AdamPark85 (talk | contribs) →Support in programming languages: added reference for quote and changed quote itself to exactly match the original |
||
Line 80:
Java ''synchronized'' blocks, in addition to enabling mutual exclusion and memory consistency, enable signaling—i.e., sending events from threads which have acquired the lock and are executing the code block to those which are waiting for the lock within the block. Java ''synchronized'' sections therefore combine the functionality of [[Lock (computer science)|mutexes]] and [[Event (synchronization primitive)|events]]. Such a construct is known as a [[Monitor (synchronization)|synchronization monitor]].
The [[.NET Framework]]
==Implementation==
|