HomeSort by: relevance | last modified time | path
    Searched refs:threadpool_job (Results 1 - 7 of 7) sorted by relevancy

  /src/sys/sys/
threadpool.h 46 struct threadpool_job;
50 typedef void threadpool_job_fn_t(struct threadpool_job *); typedef in typeref:typename:void threadpool_job_fn_t (struct *)
52 struct threadpool_job { struct
55 TAILQ_ENTRY(threadpool_job) job_entry;
75 void threadpool_job_init(struct threadpool_job *, threadpool_job_fn_t,
77 void threadpool_job_destroy(struct threadpool_job *);
78 void threadpool_job_done(struct threadpool_job *);
80 void threadpool_schedule_job(struct threadpool *, struct threadpool_job *);
81 void threadpool_cancel_job(struct threadpool *, struct threadpool_job *);
83 struct threadpool_job *);
    [all...]
  /src/sys/kern/
kern_threadpool.c 79 * in struct threadpool_job to identify the CPU on which it must run in
141 "struct threadpool *"/*pool*/, "struct threadpool_job *"/*job*/);
143 "struct threadpool *"/*pool*/, "struct threadpool_job *"/*job*/);
145 "struct threadpool *"/*pool*/, "struct threadpool_job *"/*job*/);
148 "struct threadpool_job *"/*job*/,
159 "struct threadpool_job *"/*job*/);
162 "struct threadpool_job *"/*job*/,
172 "struct threadpool *"/*pool*/, "struct threadpool_job *"/*job*/);
178 TAILQ_HEAD(job_head, threadpool_job);
185 struct threadpool_job *tpt_job
    [all...]
vfs_vnode.c 211 static struct threadpool_job vdrain_job;
212 static struct threadpool_job vrele_job;
237 static void vdrain_task(struct threadpool_job *);
238 static void vrele_task(struct threadpool_job *);
705 vdrain_task(struct threadpool_job *job)
724 vrele_task(struct threadpool_job *job)
  /src/tests/rump/kernspace/
threadpool.c 99 struct threadpool_job job;
105 test_job_func_schedule(struct threadpool_job *job)
119 test_job_func_cancel(struct threadpool_job *job)
  /src/tests/kernel/threadpool_tester/
threadpool_tester.c 55 struct threadpool_job ctx_job;
346 threadpool_tester_job(struct threadpool_job *job)
  /src/tests/modules/threadpool_tester/
threadpool_tester.c 55 struct threadpool_job ctx_job;
346 threadpool_tester_job(struct threadpool_job *job)
  /src/sys/net/
if_wg.c 709 struct threadpool_job wg_job;
802 static void wg_job(struct threadpool_job *);
3597 wg_job(struct threadpool_job *job)

Completed in 22 milliseconds