Changes in src/tests/sched-int-wait.c [6c7b1e7:9fe39530]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/tests/sched-int-wait.c
r6c7b1e7 r9fe39530 62 62 63 63 while( waiter_left != 0 ) { 64 unsigned action = random( 4 );64 unsigned action = (unsigned)rand48() % 4; 65 65 switch( action ) { 66 66 case 0: … … 127 127 // Main 128 128 int main(int argc, char* argv[]) { 129 rand om_seed( time( NULL ) );129 rand48seed( time( NULL ) ); 130 130 waiter_left = 4; 131 131 processor p[2];
Note:
See TracChangeset
for help on using the changeset viewer.