Home | History | Annotate | Download | only in common

Lines Matching defs:nn

66     int         nn;
68 for (nn = 0; nn < N_THREADS; nn++) {
69 if (pthread_create( &threads[nn], NULL, thread_function, (void*)(long int)nn) < 0) {
70 printf("creation of thread %d failed\n", nn);
75 for (nn = 0; nn < N_THREADS; nn++) {
76 if (pthread_join(threads[nn], NULL)) {
77 printf("joining thread %d failed\n", nn);