Ignore:
Timestamp:
Feb 19, 2021, 4:17:45 PM (3 years ago)
Author:
Thierry Delisle <tdelisle@…>
Branches:
ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast-unique-expr, pthread-emulation, qualifiedEnum
Children:
18a7594
Parents:
4c4d854
Message:

Fixed clashing stat counter.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libcfa/src/concurrency/io.cfa

    r4c4d854 r150d21a  
    173173                __u32 count = tail - head;
    174174                /* paranoid */ verify( count != 0 );
    175                 __STATS__( false, io.calls.submitted += count; )
     175                __STATS__( false, io.calls.completed += count; )
    176176
    177177                for(i; count) {
     
    233233
    234234                        __STATS__( false,
    235                                 io.calls.blocks += 1;
     235                                io.poller.sleeps += 1;
    236236                        )
    237237                        __cfadbg_print_safe(io_core, "Kernel I/O : Parking io poller %d (%p)\n", this.fd, &this);
Note: See TracChangeset for help on using the changeset viewer.