Ignore:
Timestamp:
Jun 11, 2020, 3:08:54 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:
61d7bec
Parents:
97392b69
Message:

Added more thread names to disjoint

File:
1 edited

Legend:

Unmodified
Added
Removed
  • tests/concurrent/signal/disjoint.cfa

    r97392b69 rab8a023  
    5353
    5454thread Barger {};
     55void ?{}( Barger & this ) {
     56        ((thread&)this){ "Barger Thread" };
     57}
    5558
    5659void main( Barger & this ) {
     
    7881
    7982thread Waiter {};
     83void ?{}( Waiter & this ) {
     84        ((thread&)this){ "Waiter Thread" };
     85}
    8086
    8187void main( Waiter & this ) {
     
    104110
    105111thread Signaller {};
     112void ?{}( Signaller & this ) {
     113        ((thread&)this){ "Signaller Thread" };
     114}
    106115
    107116void main( Signaller & this ) {
Note: See TracChangeset for help on using the changeset viewer.