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