source: src/benchmark/CorCtxSwitch.c @ e0b8ccd5

ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsdeferred_resndemanglerenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxnew-astnew-ast-unique-exprnew-envno_listpersistent-indexerpthread-emulationqualifiedEnumresolv-newwith_gc
Last change on this file since e0b8ccd5 was 8cb6fcd, checked in by Thierry Delisle <tdelisle@…>, 7 years ago

Refactored common code into bench.h

  • Property mode set to 100644
File size: 740 bytes
Line 
1#include <fstream>
2#include <stdlib>
3#include <thread>
4
5#include "bench.h"
6
7coroutine GreatSuspender {};
8
9void ?{}( GreatSuspender * this ) {
10        prime(this);
11}
12
13void main( GreatSuspender * this )
14{
15        while( true ) {
16                suspend();
17        }
18}
19
20void resumer( GreatSuspender * this, const unsigned int NoOfTimes ) {
21        for ( volatile unsigned int i = 0; i < NoOfTimes; i += 1 ) {
22                resume( this );
23        }
24}
25
26int main() {
27        const unsigned int NoOfTimes = N;
28        long long int StartTime, EndTime;
29
30        GreatSuspender s;
31
32        StartTime = Time();
33        // for ( volatile unsigned int i = 0; i < NoOfTimes; i += 1 ) {
34        //      resume( this_coroutine() );
35        //      // resume( &s );       
36        // }
37        resumer( &s, NoOfTimes );
38        EndTime = Time();
39
40        sout | ( EndTime - StartTime ) / NoOfTimes | endl;
41}
Note: See TracBrowser for help on using the repository browser.