Ignore:
Timestamp:
Sep 26, 2019, 4:36:01 PM (4 years ago)
Author:
Thierry Delisle <tdelisle@…>
Branches:
ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
Children:
c921712
Parents:
50aeb6f
Message:

Fixed stupid typo

File:
1 edited

Legend:

Unmodified
Added
Removed
  • doc/theses/thierry_delisle_PhD/code/relaxed_list.cpp

    r50aeb6f r1e24d13  
    112112                        if(r < fill)
    113113                                node = new Node(rand.next() % 100);
     114                        else
     115                                node = nullptr;
    114116                }
    115117
     
    177179                        break;
    178180                }
    179                 std::cout << "\r" << durr.count();
     181                std::cout << "\r" << durr.count() << "/" << duration;
    180182                std::cout.flush();
    181183        }
     
    264266
    265267        std::cout << "Running " << nthreads << " threads (" << (nthreads * nqueues) << " queues) for " << duration << " seconds" << std::endl;
    266         run(nthreads, nqueues, duration, fill);
     268        run(nthreads, nqueues, fill, duration);
    267269
    268270        return 0;
Note: See TracChangeset for help on using the changeset viewer.