MCPcopy Create free account
hub / github.com/F-Stack/f-stack / taskqueue_start_threads_in_proc

Function taskqueue_start_threads_in_proc

freebsd/kern/subr_taskqueue.c:757–772  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

755}
756
757int
758taskqueue_start_threads_in_proc(struct taskqueue **tqp, int count, int pri,
759 struct proc *proc, const char *name, ...)
760{
761#ifndef FSTACK
762 va_list ap;
763 int error;
764
765 va_start(ap, name);
766 error = _taskqueue_start_threads(tqp, count, pri, NULL, proc, name, ap);
767 va_end(ap);
768 return (error);
769#else
770 return (0);
771#endif
772}
773
774int
775taskqueue_start_threads_cpuset(struct taskqueue **tqp, int count, int pri,

Callers 1

taskq_create_implFunction · 0.85

Calls 1

_taskqueue_start_threadsFunction · 0.85

Tested by

no test coverage detected