Changeset b93bf85 for libcfa/src/concurrency/locks.hfa
- Timestamp:
- Jul 11, 2023, 2:27:58 PM (16 months ago)
- Branches:
- master
- Children:
- bbecdd4
- Parents:
- 4c8ce47
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/concurrency/locks.hfa
r4c8ce47 rb93bf85 112 112 static inline bool register_select( single_acquisition_lock & this, select_node & node ) { return register_select( (blocking_lock &)this, node ); } 113 113 static inline bool unregister_select( single_acquisition_lock & this, select_node & node ) { return unregister_select( (blocking_lock &)this, node ); } 114 static inline void on_selected( single_acquisition_lock & this, select_node & node ) {on_selected( (blocking_lock &)this, node ); }114 static inline bool on_selected( single_acquisition_lock & this, select_node & node ) { return on_selected( (blocking_lock &)this, node ); } 115 115 116 116 //---------- … … 129 129 static inline bool register_select( owner_lock & this, select_node & node ) { return register_select( (blocking_lock &)this, node ); } 130 130 static inline bool unregister_select( owner_lock & this, select_node & node ) { return unregister_select( (blocking_lock &)this, node ); } 131 static inline void on_selected( owner_lock & this, select_node & node ) {on_selected( (blocking_lock &)this, node ); }131 static inline bool on_selected( owner_lock & this, select_node & node ) { return on_selected( (blocking_lock &)this, node ); } 132 132 133 133 //----------------------------------------------------------------------------- … … 619 619 } 620 620 621 static inline void on_selected( simple_owner_lock & this, select_node & node ) {}621 static inline bool on_selected( simple_owner_lock & this, select_node & node ) { return true; } 622 622 623 623
Note: See TracChangeset
for help on using the changeset viewer.