ADT
        arm-eh
        ast-experimental
        enum
        forall-pointer-decay
        jacob/cs343-translation
        jenkins-sandbox
        new-ast
        new-ast-unique-expr
        pthread-emulation
        qualifiedEnum
      
      
        
          | Last change
 on this file since 6355ba7 was             bf71cfd, checked in by Thierry Delisle <tdelisle@…>, 7 years ago | 
        
          | 
Moved up many directories in source
 | 
        
          | 
              
Property                 mode
 set to                 100644 | 
        
          | File size:
            379 bytes | 
      
      
| Rev | Line |  | 
|---|
| [6810fcb] | 1 | #include <libfibre/fibre.h> | 
|---|
|  | 2 |  | 
|---|
|  | 3 | #include "bench.h" | 
|---|
|  | 4 |  | 
|---|
|  | 5 | volatile bool done = false; | 
|---|
|  | 6 |  | 
|---|
|  | 7 | static void f1main() { | 
|---|
|  | 8 | while(!done) { | 
|---|
|  | 9 | Fibre::yield(); | 
|---|
|  | 10 | } | 
|---|
|  | 11 | } | 
|---|
|  | 12 |  | 
|---|
|  | 13 | int main(int argc, char* argv[]) { | 
|---|
|  | 14 | Fibre* f1 = (new Fibre)->run(f1main); | 
|---|
|  | 15 | BENCH( | 
|---|
|  | 16 | for (size_t i = 0; i < n; i++) { | 
|---|
|  | 17 | Fibre::yield(); | 
|---|
|  | 18 | }, | 
|---|
|  | 19 | result | 
|---|
|  | 20 | ) | 
|---|
|  | 21 | printf("%llu\n", result); | 
|---|
|  | 22 | done = true; | 
|---|
|  | 23 | Fibre::yield(); | 
|---|
|  | 24 | f1->join(); | 
|---|
|  | 25 | return 0; | 
|---|
|  | 26 | } | 
|---|
       
      
  Note:
 See   
TracBrowser
 for help on using the repository browser.