source: longrun_tests/create.cfa@ 5a8037a7

ADT arm-eh ast-experimental cleanup-dtors enum forall-pointer-decay jacob/cs343-translation jenkins-sandbox new-ast new-ast-unique-expr pthread-emulation qualifiedEnum
Last change on this file since 5a8037a7 was e8fe5e0, checked in by tdelisle <tdelisle@…>, 6 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.