Geschrieben von: / Posted by: Dann Corbit at 05 March 2004 22:08:43:
Is not in Amy. It is in the pthreads library call somewhere in here:
void StopHelpers(void)
{
#if HAVE_LIBPTHREAD
if(tids) {
int nthread;
void *dummy;
AbortSearch = TRUE;
for(nthread = 0; nthread < (NumberOfCPUs-1); nthread++) {
pthread_join(tids[nthread], &dummy);
}
free(tids);
tids = NULL;
}
#endif /* HAVE_LIBPTHREAD */
}
my ftp site {remove http:// unless you like error messages}