source: src/tests/preempt_longrun/create.c@ f77dbc0

ADT aaron-thesis arm-eh ast-experimental cleanup-dtors deferred_resn demangler enum forall-pointer-decay jacob/cs343-translation jenkins-sandbox new-ast new-ast-unique-expr new-env no_list persistent-indexer pthread-emulation qualifiedEnum with_gc
Last change on this file since f77dbc0 was b9da9585, checked in by Thierry Delisle <tdelisle@…>, 7 years ago

Fixed long run tests

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