Join CdStream threads to wait for them to exit

This commit is contained in:
Adrian Graber 2020-10-24 16:12:10 +02:00 committed by erorcun
parent 07d1637342
commit 28fb26f792
1 changed files with 2 additions and 0 deletions

View File

@ -216,10 +216,12 @@ CdStreamShutdown(void)
#ifndef ONE_THREAD_PER_CHANNEL
gCdStreamThreadStatus = 2;
sem_post(gCdStreamSema);
pthread_join(_gCdStreamThread, nil);
#else
for ( int32 i = 0; i < gNumChannels; i++ ) {
gpReadInfo[i].nThreadStatus = 2;
sem_post(gpReadInfo[i].pStartSemaphore);
pthread_join(gpReadInfo[i].pChannelThread, nil);
}
#endif
}