Changeset 59a0bde for src/libcfa/concurrency/monitor
- Timestamp:
- Nov 3, 2017, 5:59:32 PM (7 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:
- 121ac13
- Parents:
- c1a9c86
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified src/libcfa/concurrency/monitor ¶
rc1a9c86 r59a0bde 41 41 struct monitor_guard_t { 42 42 monitor_desc ** m; 43 intcount;43 __lock_size_t count; 44 44 monitor_desc ** prev_mntrs; 45 45 __lock_size_t prev_count; … … 47 47 }; 48 48 49 void ?{}( monitor_guard_t & this, monitor_desc ** m, int count, void (*func)() );49 void ?{}( monitor_guard_t & this, monitor_desc ** m, __lock_size_t count, void (*func)() ); 50 50 void ^?{}( monitor_guard_t & this ); 51 51 … … 105 105 }; 106 106 107 void ?{}(__condition_node_t & this, thread_desc * waiting_thread, unsigned short count, uintptr_t user_info );107 void ?{}(__condition_node_t & this, thread_desc * waiting_thread, __lock_size_t count, uintptr_t user_info ); 108 108 void ?{}(__condition_criterion_t & this ); 109 109 void ?{}(__condition_criterion_t & this, monitor_desc * target, __condition_node_t * owner );
Note: See TracChangeset
for help on using the changeset viewer.