Changeset 4598e03 for libcfa


Ignore:
Timestamp:
Mar 29, 2022, 5:19:51 PM (2 years ago)
Author:
Thierry Delisle <tdelisle@…>
Branches:
ADT, ast-experimental, enum, master, pthread-emulation, qualifiedEnum
Children:
729df21
Parents:
d4da1535 (diff), d080549 (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/kernel.cfa

    rd4da1535 r4598e03  
    686686        eventfd_t val;
    687687        val = 1;
    688         eventfd_write( this->idle_wctx.evfd, val );
    689 
     688        __attribute__((unused)) int ret = eventfd_write( this->idle_wctx.evfd, val );
     689
     690        /* paranoid */ verifyf( ret == 0, "Expected return to be 0, was %d\n", ret );
    690691        /* paranoid */ verify( ! __preemption_enabled() );
    691692}
Note: See TracChangeset for help on using the changeset viewer.