Ignore:
File:
1 edited

Legend:

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

    r6c7b1e7 r9fe39530  
    1515static const unsigned long N = 5_000ul;
    1616
    17 static inline void rand_yield() { yield(random( 10 )); }
     17static inline void rand_yield() { yield(((unsigned)rand48()) % 10); }
    1818
    1919enum state_t { FIRST, SECOND, THIRD, LAST, STOP };
     
    2323        for (i = 0; i < 4; i++)
    2424        {
    25             int j = random( 4 );
     25                int j = ((unsigned)rand48()) % 4;
    2626                enum state_t t = array[j];
    2727                array[j] = array[i];
     
    131131
    132132int main() {
    133         random_seed( time(NULL) );
     133        rand48seed( time(NULL) );
    134134        sout | "Starting" | endl;
    135135        {
Note: See TracChangeset for help on using the changeset viewer.