source: src/tests/preempt_longrun/yield.c @ 03bd407

ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsdeferred_resndemanglerenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxnew-astnew-ast-unique-exprnew-envno_listpersistent-indexerpthread-emulationqualifiedEnumwith_gc
Last change on this file since 03bd407 was b9da9585, checked in by Thierry Delisle <tdelisle@…>, 6 years ago

Fixed long run tests

  • Property mode set to 100644
File size: 538 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
13#ifdef LONG_TEST
14static const unsigned long N = 9_750_000ul;
15#else
16static const unsigned long N = 325_000ul;
17#endif
18
19thread worker_t {};
20
21void main(worker_t & this) {
22        for(int i = 0; i < N; i++) {
23                yield();
24        }
25}
26
27extern "C" {
28static worker_t * workers;
29}
30
31int main(int argc, char* argv[]) {
32        processor p;
33        {
34                worker_t w[7];
35                workers = w;
36        }
37}
Note: See TracBrowser for help on using the repository browser.