Changeset bf55f32 for libcfa/src/bits
- Timestamp:
- Jul 17, 2023, 3:59:29 PM (21 months ago)
- Branches:
- master
- Children:
- 5adb277
- Parents:
- 1d66a91
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified libcfa/src/bits/weakso_locks.hfa ¶
r1d66a91 rbf55f32 63 63 bool unregister_select( blocking_lock & this, select_node & node ) OPTIONAL_THREAD; 64 64 bool on_selected( blocking_lock & this, select_node & node ) OPTIONAL_THREAD; 65 blocking_lock __CFA_select_get_type( blocking_lock this ) OPTIONAL_THREAD; 65 66 66 67 //---------- … … 81 82 static inline bool unregister_select( multiple_acquisition_lock & this, select_node & node ) { return unregister_select( (blocking_lock &)this, node ); } 82 83 static inline bool on_selected( multiple_acquisition_lock & this, select_node & node ) { return on_selected( (blocking_lock &)this, node ); } 84 multiple_acquisition_lock __CFA_select_get_type( multiple_acquisition_lock this );
Note: See TracChangeset
for help on using the changeset viewer.