Changes between Version 1 and Version 2 of Lock
- Timestamp:
- 11/22/10 19:57:50 (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Lock
v1 v2 14 14 15 15 {{{ 16 #!cobra 16 17 lock <expression> 17 18 <block> … … 26 27 == Examples == 27 28 {{{ 29 #!cobra 28 30 # Critical section is to generate output through a single shared writer fm multiple threads 29 31 class Tester … … 45 47 46 48 {{{ 49 #!cobra 47 50 # This is the example from the C# lock doc page converted to cobra 48 51 use System.Threading