ADT
        arm-eh
        ast-experimental
        enum
        forall-pointer-decay
        jacob/cs343-translation
        new-ast
        new-ast-unique-expr
        pthread-emulation
        qualifiedEnum
      
      
        
          | Last change
 on this file since ba417e2 was             dc33b5b, checked in by Peter A. Buhr <pabuhr@…>, 6 years ago | 
        
          | 
update benchmarks and add benchmarks for qthreads
 | 
        
          | 
              
Property                 mode
 set to                 100644 | 
        
          | File size:
            440 bytes | 
      
      
| Rev | Line |  | 
|---|
| [034165a] | 1 | #include <pthread.h> | 
|---|
|  | 2 | #include <stdio.h> | 
|---|
|  | 3 |  | 
|---|
|  | 4 | #include "bench.h" | 
|---|
|  | 5 |  | 
|---|
|  | 6 | static void *foo(void *arg) { | 
|---|
|  | 7 | return arg; | 
|---|
|  | 8 | } | 
|---|
|  | 9 |  | 
|---|
|  | 10 | int main(int argc, char* argv[]) { | 
|---|
|  | 11 | BENCH( | 
|---|
|  | 12 | for (size_t i = 0; i < n; i++) { | 
|---|
|  | 13 | pthread_t thread; | 
|---|
|  | 14 | if (pthread_create(&thread, NULL, foo, NULL) < 0) { | 
|---|
|  | 15 | perror( "failure" ); | 
|---|
|  | 16 | return 1; | 
|---|
|  | 17 | } | 
|---|
|  | 18 |  | 
|---|
|  | 19 | if (pthread_join( thread, NULL) < 0) { | 
|---|
|  | 20 | perror( "failure" ); | 
|---|
|  | 21 | return 1; | 
|---|
|  | 22 | } | 
|---|
|  | 23 | }, | 
|---|
|  | 24 | result | 
|---|
|  | 25 | ) | 
|---|
|  | 26 |  | 
|---|
| [dc33b5b] | 27 | printf("%g\n", result); | 
|---|
|  | 28 | } | 
|---|
       
      
  Note:
 See   
TracBrowser
 for help on using the repository browser.