I'm using the array implementation for simulating a binary tree of threads.
Here's some of my code:
void *genThreads(threadData *b) {
if (final level is reached) {
// print something
} else {
// The i I need is carried in b, that is, the data struct for every thread
pthread_create(&thr[i*2+1],NULL,genThreads,dat[i*2+1]);
pthread_create(&thr[i*2+2],NULL,genThreads,dat[i*2+2]);
ptread_join(thr[i*2+1],NULL);
ptread_join(thr[i*2+2],NULL);
}
}
void *rootThread(rootThreadData *d) {
pthread_create(thr[1],NULL,genThreads,dat[1]);
pthread_create(thr[2],NULL,genThreads,dat[2]);
pthread_join(thr[1],NULL);
pthread_join(thr[2],NULL);
}
main() {
rootThreadData root;
pthread_t thr[size];
threadData dat[size];
pthread_create(&thr[0],NULL,rootThread,root);
pthread_join(thr[0],NULL);
}
As you can see, I'm using a recursive function to create the threads beyond the first two workers. Also, I'm putting a flag so I can know when my "tree" hits the final leaf threads.
With 4 levels it works great but things start to get weird and fail with level>4.
With 5 levels, the join of the thr[2] throws a segfault (checked with Valgrind).
Any ideas of what might be wrong?
=============================================================== EDIT: Valgrind output
==7402== Thread 2:
==7402== Invalid read of size 4
==7402== at 0x403FA58: pthread_join (pthread_join.c:46)
==7402== by 0x804897D: rootThread (main.c:70)
==7402== by 0x403E954: start_thread (pthread_create.c:300)
==7402== by 0x411F1DD: clone (clone.S:130)
==7402== Address 0x419c160 is not stack'd, malloc'd or (recently) free'd
==7402==
==7402== Invalid read of size 4
==7402== at 0x403FA63: pthread_join (pthread_join.c:51)
==7402== by 0x804897D: rootThread (main.c:70)
==7402== by 0x403E954: start_thread (pthread_create.c:300)
==7402== by 0x411F1DD: clone (clone.S:130)
==7402== Address 0x419c31c is not stack'd, malloc'd or (recently) free'd
==7402==
==7402== Invalid read of size 4
==7402== at 0x403FAC9: pthread_join (pthread_join.c:82)
==7402== by 0x804897D: rootThread (main.c:70)
==7402== by 0x403E954: start_thread (pthread_create.c:300)
==7402== by 0x411F1DD: clone (clone.S:130)
==7402== Address 0x419c31c is not stack'd, malloc'd or (recently) free'd
==7402==
==7402== Invalid read of size 4
==7402== at 0x403FAD6: pthread_join (pthread_join.c:89)
==7402== by 0x804897D: rootThread (main.c:70)
==7402== by 0x403E954: start_thread (pthread_create.c:300)
==7402== by 0x411F1DD: clone (clone.S:130)
==7402== Address 0x419c160 is not stack'd, malloc'd or (recently) free'd
==7402==
==7402== Invalid write of size 4
==7402== at 0x403FB00: pthread_join (pthread_join.c:102)
==7402== by 0x804897D: rootThread (main.c:70)
==7402== by 0x403E954: start_thread (pthread_create.c:300)
==7402== by 0x411F1DD: clone (clone.S:130)
==7402== Address 0x419c160 is not stack'd, malloc'd or (recently) free'd
==7402==
==7402== Invalid read of size 4
==7402== at 0x403E852: __free_tcb (pthread_create.c:202)
==7402== by 0x403FB20: pthread_join (pthread_join.c:110)
==7402== by 0x804897D: rootThread (main.c:70)
==7402== by 0x403E954: start_thread (pthread_create.c:300)
==7402== by 0x411F1DD: clone (clone.S:130)
==7402== Address 0x419c17c is not stack'd, malloc'd or (recently) free'd
==7402==
==7402== Invalid read of size 4
==7402== at 0x403E862: __free_tcb (pthread_create.c:212)
==7402== by 0x403FB20: pthread_join (pthread_join.c:110)
==7402== by 0x804897D: rootThread (main.c:70)
==7402== by 0x403E954: start_thread (pthread_create.c:300)
==7402== by 0x411F1DD: clone (clone.S:130)
==7402== Address 0x419c378 is not stack'd, malloc'd or (recently) free'd
==7402==
==7402== Invalid read of size 4
==7402== at 0x403E7A3: __deallocate_stack (list.h:73)
==7402== by 0x403FB20: pthread_join (pthread_join.c:110)
==7402== by 0x804897D: rootThread (main.c:70)
==7402== by 0x403E954: start_thread (pthread_create.c:300)
==7402== by 0x411F1DD: clone (clone.S:130)
==7402== Address 0x419c158 is not stack'd, malloc'd or (recently) free'd
==7402==
==7402== Invalid read of size 4
==7402== at 0x403E7A6: __deallocate_stack (list.h:73)
==7402== by 0x403FB20: pthread_join (pthread_join.c:110)
==7402== by 0x804897D: rootThread (main.c:70)
==7402== by 0x403E954: start_thread (pthread_create.c:300)
==7402== by 0x411F1DD: clone (clone.S:130)
==7402== Address 0x419c15c is not stack'd, malloc'd or (recently) free'd
==7402==
==7402== Invalid write of size 4
==7402== at 0x403E7A9: __deallocate_stack (list.h:73)
==7402== by 0x403FB20: pthread_join (pthread_join.c:110)
==7402== by 0x804897D: rootThread (main.c:70)
==7402== by 0x403E954: start_thread (pthread_create.c:300)
==7402== by 0x411F1DD: clone (clone.S:130)
==7402== Address 0x4 is not stack'd, malloc'd or (recently) free'd
==7402==
==7402==
==7402== Process terminating with default action of signal 11 (SIGSEGV)
==7402== Access not within mapped region at address 0x4
==7402== at 0x403E7A9: __deallocate_stack (list.h:73)
==7402== by 0x403FB20: pthread_join (pthread_join.c:110)
==7402== by 0x804897D: rootThread (main.c:70)
==7402== by 0x403E954: start_thread (pthread_create.c:300)
==7402== by 0x411F1DD: clone (clone.S:130)
==7402== If you believe this happened as a result of a stack
==7402== overflow in your program's main thread (unlikely but
==7402== possible), you can try to increase the size of the
==7402== main thread stack using the --main-stacksize= flag.
==7402== The main thread stack size used in this run was 8388608.
==7402==
==7402== HEAP SUMMARY:
==7402== in use at exit: 1,152 bytes in 34 blocks
==7402== total heap usage: 42 allocs, 8 frees, 2,240 bytes allocated
==7402==
==7402== LEAK SUMMARY:
==7402== definitely lost: 0 bytes in 0 blocks
==7402== indirectly lost: 0 bytes in 0 blocks
==7402== possibly lost: 272 bytes in 2 blocks
==7402== still reachable: 880 bytes in 32 blocks
==7402== suppressed: 0 bytes in 0 blocks
==7402== Rerun with --leak-check=full to see details of leaked memory
==7402==
==7402== For counts of detected and suppressed errors, rerun with: -v
==7402== ERROR SUMMARY: 13 errors from 10 contexts (suppressed: 15 from 8)
Killed
void *functions should havereturnstatements? – undefined behaviour Feb 25 at 9:48size? How do you change the value ofi? – Davide Berra Feb 25 at 12:36