Ignore:
Timestamp:
Jun 25, 2020, 1:37:33 PM (4 years ago)
Author:
Thierry Delisle <tdelisle@…>
Branches:
ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
Children:
69fbc61
Parents:
c34ebf2
Message:

Fixed benchmark to use getTimeNsec

File:
1 edited

Legend:

Unmodified
Added
Removed
  • benchmark/readyQ/yield.cfa

    rc34ebf2 r8e27ac45  
    111111                {
    112112                        BenchProc procs[nprocs];
     113                        #if !defined(__CFA_NO_STATISTICS__)
     114                                for(i; nprocs) {
     115                                        print_stats_at_exit( procs[i].self );
     116                                }
     117                        #endif
    113118                        {
    114119                                Yielder threads[nthreads];
     
    116121
    117122                                bool is_tty = isatty(STDOUT_FILENO);
    118                                 start = getTime();
     123                                start = getTimeNsec();
    119124                                run = true;
    120125
     
    125130
    126131                                run = false;
    127                                 end = getTime();
     132                                end = getTimeNsec();
    128133                                printf("\nDone\n");
    129134                        }
Note: See TracChangeset for help on using the changeset viewer.