Searched refs:tids (Results 1 - 1 of 1) sorted by relevance

/libmicro/
H A Dlibmicro.c117 static pthread_t *tids = NULL; variable
329 tids = (pthread_t *)malloc(lm_optT * sizeof (pthread_t));
330 if (tids == NULL) {
331 perror("malloc(tids)");
512 if (pthread_create(&tids[i], NULL, worker_thread, tsd) != 0) {
522 (void) pthread_join(tids[i], NULL);
921 if (tids == NULL) {
926 if (pthread_self() == tids[i]) {

Completed in 19 milliseconds