Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/tests/sched-int-disjoint.c

    r4c5b972 r9737ffe  
    7878        signal( &cond, a, &data );
    7979
    80         yield( (unsigned)rand48() % 10 );
     80        int pauses = (unsigned)rand48() % 10;
     81        for(int i = 0; i < pauses; i++) {
     82                yield();
     83        }
    8184
    8285        //This is technically a mutual exclusion violation but the mutex monitor protects us
Note: See TracChangeset for help on using the changeset viewer.