Changeset d5c5586


Ignore:
Timestamp:
May 4, 2023, 8:28:44 AM (13 months ago)
Author:
Peter A. Buhr <pabuhr@…>
Branches:
ADT, ast-experimental, master
Children:
ca8c91ce
Parents:
7bef8cf (diff), 8607a72 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'master' of plg.uwaterloo.ca:software/cfa/cfa-cc

File:
1 edited

Legend:

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

    r7bef8cf rd5c5586  
    326326// type used by select statement to capture a chan read as the selected operation
    327327struct chan_read {
     328    T & ret;
    328329    channel(T) & chan;
    329     T & ret;
    330330};
    331331
     
    399399// type used by select statement to capture a chan write as the selected operation
    400400struct chan_write {
     401    T elem;
    401402    channel(T) & chan;
    402     T elem;
    403403};
    404404
Note: See TracChangeset for help on using the changeset viewer.