ADT
        aaron-thesis
        arm-eh
        ast-experimental
        cleanup-dtors
        deferred_resn
        demangler
        enum
        forall-pointer-decay
        jacob/cs343-translation
        jenkins-sandbox
        new-ast
        new-ast-unique-expr
        new-env
        no_list
        persistent-indexer
        pthread-emulation
        qualifiedEnum
        resolv-new
        with_gc
      
      
        
          | Last change
 on this file since b93a3de was             d67cdb7, checked in by Peter A. Buhr <pabuhr@…>, 8 years ago | 
        
          | 
merge
 | 
        
          | 
              
Property                 mode
 set to                 100644 | 
        
          | File size:
            307 bytes | 
      
      
| Rev | Line |  | 
|---|
| [5013c62] | 1 | #include <thread> | 
|---|
|  | 2 | #include <stdlib.h> | 
|---|
|  | 3 | #include <stdio.h> | 
|---|
|  | 4 |  | 
|---|
|  | 5 | thread MyThread {}; | 
|---|
| [d67cdb7] | 6 | void main(MyThread & this) {} | 
|---|
| [5013c62] | 7 |  | 
|---|
|  | 8 | int main(int argc, char* argv[]) { | 
|---|
|  | 9 | size_t n = 1000000; | 
|---|
|  | 10 | if( argc > 2 ) return 1; | 
|---|
|  | 11 | if( argc == 2 ) { | 
|---|
|  | 12 | n = atoi(argv[1]); | 
|---|
|  | 13 | } | 
|---|
|  | 14 | printf("%lu\n", n); | 
|---|
|  | 15 | for (size_t i = 0; i < n; i++) { | 
|---|
|  | 16 | MyThread m; | 
|---|
|  | 17 | } | 
|---|
|  | 18 | } | 
|---|
       
      
  Note:
 See   
TracBrowser
 for help on using the repository browser.