Loading src/Parallelizer2Pthread.h +2 −0 Original line number Diff line number Diff line Loading @@ -62,6 +62,8 @@ void *thread_function_wrapper2(void *dummyPtr) (*pfh)(taskNumber + pfs->start, pfs->threadNum); } int retval = 0; pthread_exit(static_cast<void*>(&retval)); return 0; } Loading src/Pthreads.h +2 −0 Original line number Diff line number Diff line Loading @@ -125,6 +125,8 @@ void *thread_function_wrapper(void *dummyPtr) pfh->thread_function_(pfs->threadNum,pfs->blockSize,pfs->total,pfs->mutex); int retval = 0; pthread_exit(static_cast<void*>(&retval)); return 0; } Loading src/PthreadsNg.h +2 −0 Original line number Diff line number Diff line Loading @@ -144,6 +144,8 @@ void *thread_function_wrapper(void *dummyPtr) pfh->doTask(taskNumber, pfs->threadNum); } int retval = 0; pthread_exit(static_cast<void*>(&retval)); return 0; } Loading Loading
src/Parallelizer2Pthread.h +2 −0 Original line number Diff line number Diff line Loading @@ -62,6 +62,8 @@ void *thread_function_wrapper2(void *dummyPtr) (*pfh)(taskNumber + pfs->start, pfs->threadNum); } int retval = 0; pthread_exit(static_cast<void*>(&retval)); return 0; } Loading
src/Pthreads.h +2 −0 Original line number Diff line number Diff line Loading @@ -125,6 +125,8 @@ void *thread_function_wrapper(void *dummyPtr) pfh->thread_function_(pfs->threadNum,pfs->blockSize,pfs->total,pfs->mutex); int retval = 0; pthread_exit(static_cast<void*>(&retval)); return 0; } Loading
src/PthreadsNg.h +2 −0 Original line number Diff line number Diff line Loading @@ -144,6 +144,8 @@ void *thread_function_wrapper(void *dummyPtr) pfh->doTask(taskNumber, pfs->threadNum); } int retval = 0; pthread_exit(static_cast<void*>(&retval)); return 0; } Loading