Changes in src/tests/monitor.c [cc7f4b1:51f3798]
- File:
-
- 1 edited
-
src/tests/monitor.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/tests/monitor.c
rcc7f4b1 r51f3798 6 6 struct global_t { 7 7 int value; 8 __monitor_tm;8 monitor m; 9 9 }; 10 10 … … 16 16 17 17 void increment( /*mutex*/ global_t * this ) { 18 monitor_guard_t g1 = { &this->m }; 19 { 20 monitor_guard_t g2 = { &this->m }; 21 { 22 monitor_guard_t g3 = { &this->m }; 23 this->value += 1; 24 } 25 } 18 monitor_guard g = { &this->m }; 19 this->value += 1; 26 20 } 27 21
Note:
See TracChangeset
for help on using the changeset viewer.