Changeset 63bde81 for tests/unified_locking
- Timestamp:
- Jul 19, 2021, 4:03:19 PM (5 years ago)
- Branches:
- ADT, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast-unique-expr, pthread-emulation, qualifiedEnum, stuck-waitfor-destruct
- Children:
- f9b68d6
- Parents:
- 12a1013 (diff), fcaa1e4 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - File:
-
- 1 edited
-
tests/unified_locking/mutex_test.hfa (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
tests/unified_locking/mutex_test.hfa
r12a1013 r63bde81 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.