Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/tests/sched-ext.c

    r6c7b1e7 re1e8408  
    3232void do_wait( global_t * mutex a ) {
    3333        sout | "Waiting to accept" | endl;
    34         yield( random( 10 ) );
     34        yield( rand48(10) );
    3535
    3636        sout | "Accepting" | endl;
     
    4444
    4545        sout | "Accepted" | endl;
    46         yield( random( 10 ) );
     46        yield( rand10() );
    4747}
    4848
     
    6464void main( Acceptee* this ) {
    6565        while( !done ) {
    66                 yield( random( 10 ) );
     66                yield( rand10() );
    6767                do_notify( &globalA );
    68                 yield( random( 10 ) );
     68                yield( rand10() );
    6969        }
    7070}
     
    7474int main(int argc, char* argv[]) {
    7575        done = false;
    76         random_seed( time( NULL ) );
     76        rand48seed( time( NULL ) );
    7777        printf("%p\n", &globalA);
    7878        sout | "Starting" | endl;
Note: See TracChangeset for help on using the changeset viewer.