Ignore:
File:
1 edited

Legend:

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

    r108345a r7ce8873  
    3434#include "kernel.hfa"
    3535#include "io/types.hfa"
     36#include "stats.hfa"
    3637
    3738//=============================================================================================
     
    226227        async_{name}( future, {args}, submit_flags );
    227228
    228         wait( future );
     229        __attribute__((unused)) bool parked;
     230        parked = wait( future );
     231        __STATS__(false, if(!parked) io.submit.nblk += 1; )
    229232        if( future.result < 0 ) {{
    230233                errno = -future.result;
Note: See TracChangeset for help on using the changeset viewer.