Ignore:
Timestamp:
Mar 29, 2026, 11:03:25 PM (3 days ago)
Author:
Peter A. Buhr <pabuhr@…>
Branches:
master
Parents:
81ab5eb
Message:

3rd attempt at harmonizing isOp functions, e.g., isListed, isFirst, isLast

File:
1 edited

Legend:

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

    r81ab5eb re6e250d  
    369369        ///////////////////////////////////////////////////////////////////////////////////////////
    370370        bool unregister_chan( channel(T) & chan, select_node & node ) with(chan) {
    371             if ( ! isListed( node ) && ! node.park_counter ) return false; // handle special OR case
     371            if ( ! listed( node ) && ! node.park_counter ) return false; // handle special OR case
    372372            lock( mutex_lock );
    373             if ( isListed( node ) ) { // op wasn't performed
     373            if ( listed( node ) ) { // op wasn't performed
    374374                remove( node );
    375375                unlock( mutex_lock );
Note: See TracChangeset for help on using the changeset viewer.