Changeset 76c94bf for tests


Ignore:
Timestamp:
Apr 15, 2021, 1:54:38 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:
c0c0bd5
Parents:
780a614
Message:

Added a little bit of debug information to the multi future test.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • tests/concurrent/futures/multi.cfa

    r780a614 r76c94bf  
    1010
    1111void ?{}( Server & this ) {
     12        ((thread&)this){"Server Thread"};
    1213        this.cnt = 0;
    1314        this.iteration = 0;
     
    5758Server * the_server;
    5859thread Worker {};
     60void ?{}(Worker & this) {
     61        ((thread&)this){"Worker Thread"};
     62}
     63
    5964multi_future(int) * shared_future;
    6065
Note: See TracChangeset for help on using the changeset viewer.