Home | History | Annotate | Download | only in bionic

Lines Matching defs:nn

77     int nn;
80 for (nn = 0; nn < count; nn++) {
81 printf("main: creating thread %d\n", nn+1);
82 if (pthread_create( &t[nn], NULL, thread_routines[nn], NULL) < 0) {
83 printf("main: could not create thread %d: %s\n", nn+1, strerror(errno));
88 for (nn = 0; nn < count; nn++) {
89 printf("main: joining thread %d\n", nn+1);
90 if (pthread_join(t[nn], NULL)) {
91 printf("main: could not join thread %d: %s\n", nn+1, strerror(errno));