Changeset d5187a0 for libcfa


Ignore:
Timestamp:
May 7, 2023, 12:35:20 PM (12 months ago)
Author:
caparsons <caparson@…>
Branches:
ADT, ast-experimental, master
Children:
ab2b352
Parents:
a32a887
Message:

removed potential race to attempt to fix failing test

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libcfa/src/concurrency/channel.hfa

    ra32a887 rd5187a0  
    308308///////////////////////////////////////////////////////////////////////////////////////////
    309309static inline bool unregister_chan( channel(T) & chan, select_node & node ) with(chan) {
    310     if ( !node`isListed && !node.park_counter ) return false; // handle special OR case
     310    // if ( !node`isListed && !node.park_counter ) return false; // handle special OR case
    311311    lock( mutex_lock );
    312312    if ( node`isListed ) { // op wasn't performed
Note: See TracChangeset for help on using the changeset viewer.