Changes in / [4c11fce:e61de5b]
- Location:
- src/tests/preempt_longrun
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
src/tests/preempt_longrun/create.c
r4c11fce re61de5b 2 2 #include <thread> 3 3 4 static const unsigned long N = 2_000ul;4 static const unsigned long N = 60_000ul; 5 5 6 6 #ifndef PREEMPTION_RATE -
src/tests/preempt_longrun/enter.c
r4c11fce re61de5b 3 3 #include <thread> 4 4 5 static const unsigned long N = 70_000ul;5 static const unsigned long N = 2_100_000ul; 6 6 7 7 #ifndef PREEMPTION_RATE -
src/tests/preempt_longrun/enter3.c
r4c11fce re61de5b 3 3 #include <thread> 4 4 5 static const unsigned long N = 50 _000ul;5 static const unsigned long N = 500_000ul; 6 6 7 7 #ifndef PREEMPTION_RATE -
src/tests/preempt_longrun/processor.c
r4c11fce re61de5b 19 19 for ( int i = 0; i < N; i++) { 20 20 int pi = i % 15; 21 for ( volatile int j = 0; j < 10000; j++ );21 //for ( volatile int j = 0; j < 10000; j++ ); 22 22 delete( p[pi] ); 23 23 p[pi] = new();
Note: See TracChangeset
for help on using the changeset viewer.