Changeset bf55f32 for libcfa/src/bits


Ignore:
Timestamp:
Jul 17, 2023, 3:59:29 PM (21 months ago)
Author:
caparsons <caparson@…>
Branches:
master
Children:
5adb277
Parents:
1d66a91
Message:

added support for general channel operators

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified libcfa/src/bits/weakso_locks.hfa

    r1d66a91 rbf55f32  
    6363bool unregister_select( blocking_lock & this, select_node & node ) OPTIONAL_THREAD;
    6464bool on_selected( blocking_lock & this, select_node & node ) OPTIONAL_THREAD;
     65blocking_lock __CFA_select_get_type( blocking_lock this ) OPTIONAL_THREAD;
    6566
    6667//----------
     
    8182static inline bool   unregister_select( multiple_acquisition_lock & this, select_node & node ) { return unregister_select( (blocking_lock &)this, node ); }
    8283static inline bool   on_selected( multiple_acquisition_lock & this, select_node & node ) { return on_selected( (blocking_lock &)this, node ); }
     84multiple_acquisition_lock __CFA_select_get_type( multiple_acquisition_lock this );
Note: See TracChangeset for help on using the changeset viewer.