| /src/tests/rump/rumpkern/h_client/ | 
| h_reconcli.c | 52 worker(void *arg)  function in typeref:typename:void * 106 	pthread_create(&w1, NULL, worker, NULL);
 107 	pthread_create(&w2, NULL, worker, NULL);
 108 	pthread_create(&w3, NULL, worker, NULL);
 109 	pthread_create(&w4, NULL, worker, NULL);
 
 | 
| /src/sys/net/npf/ | 
| npf_worker.c | 53 	lwp_t *			worker[];  member in struct:npf_worker 63 #define	WFLAG_INITED		0x02	// worker setup the instance
 72 	const size_t len = offsetof(npf_workerinfo_t, worker[nworkers]);
 91 		    NULL, npf_worker, winfo, &winfo->worker[i], "npfgc%u", i)) {
 118 		lwp_t *worker;  local in function:npf_worker_sysfini
 120 		if ((worker = winfo->worker[i]) != NULL) {
 121 			kthread_join(worker);
 127 	kmem_free(winfo, offsetof(npf_workerinfo_t, worker[nworkers]));
 162  * npf_worker_enlist: add the NPF instance for worker(s) to process
 [all...]
 | 
| /src/sys/external/bsd/drm2/dist/drm/ | 
| drm_flip_work.c | 115 	queue_work(wq, &work->worker); 121 	struct drm_flip_work *work = container_of(w, struct drm_flip_work, worker);
 161 	INIT_WORK(&work->worker, flip_worker);
 
 | 
| /src/sys/external/bsd/drm2/dist/drm/i915/gt/uc/ | 
| intel_guc_ct.h | 60 		struct work_struct worker; /* handler for incoming requests */  member in struct:intel_guc_ct::__anona7001fdc0108 
 | 
| intel_guc_ct.c | 48 	INIT_WORK(&ct->requests.worker, ct_incoming_request_worker_func); 772 		container_of(w, struct intel_guc_ct, requests.worker);
 777 		queue_work(system_unbound_wq, &ct->requests.worker);
 819 	queue_work(system_unbound_wq, &ct->requests.worker);
 
 | 
| /src/sys/external/bsd/drm2/dist/include/drm/ | 
| drm_flip_work.h | 72  * @worker: worker which calls @func 80 	struct work_struct worker;  member in struct:drm_flip_work
 
 | 
| /src/usr.sbin/npf/npftest/libnpftest/ | 
| npf_perf_test.c | 28 worker(void *arg)  function in typeref:typename:__dead void 71 		    KTHREAD_MPSAFE, NULL, worker, (void *)(uintptr_t)i,
 
 | 
| /src/sys/external/bsd/compiler_rt/dist/lib/asan/tests/ | 
| asan_mac_test_helpers.mm | 81 // Used by the GCD tests to avoid a race between the worker thread reporting a 95   // dispatch_async() runs the task on a worker thread that does not go through
 105   // dispatch_sync() runs the task on a worker thread that does not go through
 159   // Do not wait for the worker to free the memory -- nobody is going to touch
 
 | 
| /src/sbin/dump/ | 
| tape.c | 83  * are exported to several worker processes.  While one worker writes the 95 #define WORKERS 3		/* 1 worker writing, 1 reading, 1 for slack */
 96 struct worker {  struct
 102 	int fd;			/* FD for this worker */
 103 	int pid;		/* PID for this worker */
 104 	int sent;		/* 1 == we've sent this worker requests */
 108 struct worker *wp;
 295 	/* Read results back from next worker */
 460 	struct worker *twp
 [all...]
 | 
| /src/usr.sbin/nfsd/ | 
| nfsd.c | 123 worker(void *dummy)  function in typeref:typename:void * 530 		error = pthread_create(&workers[i], NULL, worker, NULL);
 
 | 
| /src/sys/external/bsd/drm2/dist/drm/nouveau/ | 
| nouveau_drv.h | 115 	struct list_head worker;  member in struct:nouveau_cli 
 | 
| nouveau_drm.c | 158 	list_for_each_entry_safe(work, wtmp, &cli->worker, head) { 181 	list_add_tail(&work->head, &cli->worker);
 196 	WARN_ON(!list_empty(&cli->worker));
 246 	INIT_LIST_HEAD(&cli->worker);
 
 |