source: src/benchmark/PthrdCtxSwitch.c @ af58ee0

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 af58ee0 was af58ee0, checked in by Thierry Delisle <tdelisle@…>, 7 years ago

updated benchmark to have pthread context switch and new reference syntax

  • Property mode set to 100644
File size: 368 bytes
Line 
1#include <stdio.h>
2#include <stdlib.h>
3#define _GNU_SOURCE
4#include <pthread.h>
5
6#include "bench.h"
7
8int main() {
9        const unsigned int NoOfTimes = N;
10        long long int StartTime, EndTime;
11
12        StartTime = Time();
13        for ( volatile unsigned int i = 0; i < NoOfTimes; i += 1 ) {
14                pthread_yield();
15        }
16        EndTime = Time();
17
18        printf("%lld\n", ( EndTime - StartTime ) / NoOfTimes );
19}
Note: See TracBrowser for help on using the repository browser.