Changeset 8607a72 for libcfa/src


Ignore:
Timestamp:
May 3, 2023, 4:20:28 PM (16 months ago)
Author:
caparsons <caparson@…>
Branches:
ADT, ast-experimental, master
Children:
d5c5586
Parents:
7358f65
Message:

added 32 bit failure fix for channels

File:
1 edited

Legend:

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

    r7358f65 r8607a72  
    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.