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

Function taskqueue_create_fast

freebsd/kern/subr_taskqueue.c:861–867  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

859TASKQUEUE_DEFINE_THREAD(thread);
860
861struct taskqueue *
862taskqueue_create_fast(const char *name, int mflags,
863 taskqueue_enqueue_fn enqueue, void *context)
864{
865 return _taskqueue_create(name, mflags, enqueue, context,
866 MTX_SPIN, "fast_taskqueue");
867}
868
869static void *taskqueue_fast_ih;
870

Callers 5

ip_dn_initFunction · 0.85
cvm_oct_rx_initializeFunction · 0.85
mca_createtqFunction · 0.85
dmar_init_fault_logFunction · 0.85
dmar_init_qiFunction · 0.85

Calls 1

_taskqueue_createFunction · 0.85

Tested by

no test coverage detected