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

Function taskqueue_start_threads

freebsd/kern/subr_taskqueue.c:740–755  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

738#endif
739
740int
741taskqueue_start_threads(struct taskqueue **tqp, int count, int pri,
742 const char *name, ...)
743{
744#ifndef FSTACK
745 va_list ap;
746 int error;
747
748 va_start(ap, name);
749 error = _taskqueue_start_threads(tqp, count, pri, NULL, NULL, name, ap);
750 va_end(ap);
751 return (error);
752#else
753 return (0);
754#endif
755}
756
757int
758taskqueue_start_threads_in_proc(struct taskqueue **tqp, int count, int pri,

Callers 8

ip_dn_initFunction · 0.85
ieee80211_ifattachFunction · 0.85
cvm_oct_init_moduleFunction · 0.85
firmware_modeventFunction · 0.85
crypto_initFunction · 0.85
mca_createtqFunction · 0.85
dmar_init_fault_logFunction · 0.85
dmar_init_qiFunction · 0.85

Calls 1

_taskqueue_start_threadsFunction · 0.85

Tested by

no test coverage detected