Lines Matching defs:pres
335 void *pres;
352 pres = malloc(sizeof(int));
353 if (pres != NULL)
355 *(int*)pres = res;
357 return pres;
423 void *pres = malloc(sizeof(int));
424 if (pres != NULL)
426 *(int*)pres = res;
428 pthread_exit(pres);
446 void *pres;
448 if (pthread_join(thr, &pres) != 0)
452 if (pres != NULL)
454 ires = *(int*)pres;
455 free(pres);