Ignore:
File:
1 edited

Legend:

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

    r200fcb3 rdc8511c  
    6666        wait( cond );
    6767        if( d.state != SIGNAL ) {
    68                 sout | "ERROR barging!";
     68                sout | "ERROR barging!" | endl;
    6969        }
    7070
    7171        #if !defined(TEST_FOREVER)
    7272                d.counter++;
    73                 if( (d.counter % 1000) == 0 ) sout | d.counter;
     73                if( (d.counter % 1000) == 0 ) sout | d.counter | endl;
    7474        #endif
    7575
     
    9999        bool running = TEST(data.counter < N) && data.counter > 0;
    100100        if( data.state != SIGNAL && running ) {
    101                 sout | "ERROR Eager signal" | data.state;
     101                sout | "ERROR Eager signal" | data.state | endl;
    102102        }
    103103}
     
    124124                        Waiter w[4];
    125125                }
    126                 sout | "All waiter done";
     126                sout | "All waiter done" | endl;
    127127                all_done = true;
    128128        }
Note: See TracChangeset for help on using the changeset viewer.