Changeset 4ccc150 for libcfa/src
- Timestamp:
 - Mar 30, 2022, 4:51:07 PM (4 years ago)
 - Branches:
 - ADT, ast-experimental, enum, master, pthread-emulation, qualifiedEnum
 - Children:
 - bdfd0bd
 - Parents:
 - 77adaee
 - File:
 - 
      
- 1 edited
 
- 
          
  libcfa/src/concurrency/kernel.cfa (modified) (2 diffs)
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
      
libcfa/src/concurrency/kernel.cfa
r77adaee r4ccc150 642 642 643 643 switch(fd) { 644 __attribute__((unused)) int ret; 644 645 case 0: 645 646 // If the processor isn't ready to sleep then the exchange will already wake it up … … 659 660 // If the processor was ready to sleep, we need to wake it up with an actual write 660 661 val = 1; 661 __attribute__((unused)) intret = eventfd_write( fd, val );662 ret = eventfd_write( fd, val ); 662 663 /* paranoid */ verifyf( ret == 0, "Expected return to be 0, was %d\n", ret ); 663 664  
  Note:
 See   TracChangeset
 for help on using the changeset viewer.