ADTast-experimentalpthread-emulation
Last change
on this file since 0e34a14 was
e8fe5e0,
checked in by tdelisle <tdelisle@…>, 6 years ago
|
Fixing longrun_tests to compile
|
-
Property mode set to
100644
|
File size:
604 bytes
|
Line | |
---|
1 | #include <kernel.hfa> |
---|
2 | #include <monitor.hfa> |
---|
3 | #include <thread.hfa> |
---|
4 | #include <time.hfa> |
---|
5 | |
---|
6 | #define __kick_rate 75000ul |
---|
7 | #include "long_tests.hfa" |
---|
8 | |
---|
9 | #ifndef PREEMPTION_RATE |
---|
10 | #error PREEMPTION_RATE not defined in makefile |
---|
11 | #endif |
---|
12 | |
---|
13 | Duration default_preemption() { |
---|
14 | return PREEMPTION_RATE; |
---|
15 | } |
---|
16 | |
---|
17 | static const unsigned long N = 2_100_000ul; |
---|
18 | |
---|
19 | monitor mon_t {}; |
---|
20 | void foo( mon_t & mutex this ) { |
---|
21 | KICK_WATCHDOG; |
---|
22 | } |
---|
23 | |
---|
24 | mon_t mon; |
---|
25 | thread worker_t {}; |
---|
26 | void main( worker_t & this ) { |
---|
27 | for( unsigned long i = 0; TEST(i < N); i++ ) { |
---|
28 | foo( mon ); |
---|
29 | } |
---|
30 | } |
---|
31 | |
---|
32 | int main(int argc, char * argv[] ) { |
---|
33 | processor p; |
---|
34 | { |
---|
35 | worker_t w[7]; |
---|
36 | } |
---|
37 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.