source: longrun_tests/create.cfa @ 585d910

ADTarm-ehast-experimentalenumforall-pointer-decayjacob/cs343-translationnew-ast-unique-exprpthread-emulationqualifiedEnum
Last change on this file since 585d910 was e8fe5e0, checked in by tdelisle <tdelisle@…>, 5 years ago

Fixing longrun_tests to compile

  • Property mode set to 100644
File size: 449 bytes
Line 
1#include <kernel.hfa>
2#include <thread.hfa>
3#include <time.hfa>
4
5#include "long_tests.hfa"
6
7#ifndef PREEMPTION_RATE
8#error PREEMPTION_RATE not defined in makefile
9#endif
10
11Duration default_preemption() {
12        return PREEMPTION_RATE;
13}
14
15static const unsigned long N = 60_000ul;
16
17thread worker_t {};
18
19void main(worker_t & this) {}
20
21int main(int argc, char* argv[]) {
22        processor p;
23        for(int i = 0; TEST(i < N); i++) {
24                worker_t w[7];
25                KICK_WATCHDOG;
26        }
27}
Note: See TracBrowser for help on using the repository browser.