/src/sys/external/bsd/compiler_rt/dist/lib/asan/tests/ |
asan_mac_test.cc | 176 pthread_t workers[kNumWorkers], forker; local in function:TEST 178 PTHREAD_CREATE(&workers[i], 0, MallocIntrospectionLockWorker, 0); 182 PTHREAD_JOIN(workers[i], 0);
|
/src/usr.sbin/nfsd/ |
nfsd.c | 428 pthread_t *workers; local in function:main 521 workers = calloc(nfsdcnt, sizeof(*workers)); 522 if (workers == NULL) { 530 error = pthread_create(&workers[i], NULL, worker, NULL); 564 pthread_join(workers[i], NULL);
|
/src/sbin/dump/ |
tape.c | 86 * sends writeheader()'s and lists of daddr's to the workers via pipes. 87 * The following structure defines the instruction packets sent to workers. 95 #define WORKERS 3 /* 1 worker writing, 1 reading, 1 for slack */ 107 } workers[WORKERS+1]; variable in typeref:struct:worker[] 141 for (i = 0; i <= WORKERS; i++) { 144 workers[i].tblock = (char (*)[TP_BSIZE]) 146 workers[i].req = (struct req *)workers[i].tblock - ntrec - 1; 148 wp = &workers[0] [all...] |