Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/benchmark/create_pthrd.c

    reb2fe4f rd6ff3ff  
    1414                n = atoi(argv[1]);
    1515        }
    16         printf("create %lu pthreads ... ", n);
     16        printf("%lu\n", n);
    1717
    1818        for (size_t i = 0; i < n; i++) {
    1919                pthread_t thread;
    2020                if (pthread_create(&thread, NULL, foo, NULL) < 0) {
    21                         perror( "failure" );
    2221                        return 1;
    2322                }
    2423
    2524                if (pthread_join( thread, NULL) < 0) {
    26                         perror( "failure" );
    2725                        return 1;
    2826                }
    2927        }
    30         printf("finish\n");
     28        pthread_exit(NULL);
     29        return 0;
    3130}
Note: See TracChangeset for help on using the changeset viewer.