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

Function gtaskqueue_start_threads

freebsd/kern/subr_gtaskqueue.c:511–522  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

509}
510
511static int
512gtaskqueue_start_threads(struct gtaskqueue **tqp, int count, int pri,
513 const char *name, ...)
514{
515 va_list ap;
516 int error;
517
518 va_start(ap, name);
519 error = _gtaskqueue_start_threads(tqp, count, pri, NULL, name, ap);
520 va_end(ap);
521 return (error);
522}
523
524static inline void
525gtaskqueue_run_callback(struct gtaskqueue *tq,

Callers 1

taskqgroup_cpu_createFunction · 0.85

Calls 1

Tested by

no test coverage detected