- File:
-
- 1 edited
-
tests/unified_locking/mutex_test.hfa (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
tests/unified_locking/mutex_test.hfa
rb16e15e r4ae968e 8 8 struct MutexObj { 9 9 LOCK l; 10 thread$* id;10 $thread * id; 11 11 uint32_t sum; 12 12 }; … … 22 22 23 23 uint32_t cs() { 24 thread$* me = active_thread();24 $thread * me = active_thread(); 25 25 uint32_t value; 26 26 lock(mo.l);
Note:
See TracChangeset
for help on using the changeset viewer.