source:
src/tests/preempt_longrun/processor.c
@
cb7caf8
Last change on this file since cb7caf8 was b9da9585, checked in by , 6 years ago | |
---|---|
|
|
File size: 437 bytes |
Rev | Line | |
---|---|---|
[cc3e4d0] | 1 | #include <kernel> |
2 | #include <thread> | |
[b9da9585] | 3 | #include <time> |
[cd99ef1] | 4 | |
[cc3e4d0] | 5 | #ifndef PREEMPTION_RATE |
[b9da9585] | 6 | #error PREEMPTION_RATE not defined in makefile |
[cc3e4d0] | 7 | #endif |
8 | ||
[8ad6533] | 9 | Duration default_preemption() { |
[cc3e4d0] | 10 | return PREEMPTION_RATE; |
11 | } | |
12 | ||
[b9da9585] | 13 | static const unsigned long N = 5_000ul; |
14 | ||
[cc3e4d0] | 15 | int main(int argc, char* argv[]) { |
[e5d4e5c] | 16 | processor * p[15]; |
17 | for ( int pi = 0; pi < 15; pi++ ) { | |
18 | p[pi] = new(); | |
19 | } | |
20 | for ( int i = 0; i < N; i++) { | |
21 | int pi = i % 15; | |
22 | delete( p[pi] ); | |
23 | p[pi] = new(); | |
[cc3e4d0] | 24 | } |
[1449d83] | 25 | } |
Note: See TracBrowser
for help on using the repository browser.