Changeset c1a9c86 for src/libcfa/concurrency/monitor
- Timestamp:
- Nov 2, 2017, 5:59:12 PM (8 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
- Children:
- 59a0bde
- Parents:
- 513daec
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/libcfa/concurrency/monitor
r513daec rc1a9c86 43 43 int count; 44 44 monitor_desc ** prev_mntrs; 45 unsigned shortprev_count;45 __lock_size_t prev_count; 46 46 fptr_t prev_func; 47 47 }; … … 53 53 monitor_desc * m; 54 54 monitor_desc ** prev_mntrs; 55 unsigned shortprev_count;55 __lock_size_t prev_count; 56 56 fptr_t prev_func; 57 57 }; … … 81 81 // Intrusive linked list Next field 82 82 __condition_criterion_t * next; 83 84 83 }; 85 84 … … 92 91 93 92 // Number of criterions in the criteria 94 unsigned short count;93 __lock_size_t count; 95 94 96 95 // Intrusive linked list Next field … … 99 98 // Custom user info accessible before signalling 100 99 uintptr_t user_info; 101 102 100 }; 103 101 … … 123 121 124 122 // Number of monitors in the array 125 unsigned short monitor_count; 126 123 __lock_size_t monitor_count; 127 124 }; 128 125
Note:
See TracChangeset
for help on using the changeset viewer.