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

Function taskqueue_enqueue

freebsd/kern/subr_taskqueue.c:280–290  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

278}
279
280int
281taskqueue_enqueue(struct taskqueue *queue, struct task *task)
282{
283 int res;
284
285 TQ_LOCK(queue);
286 res = taskqueue_enqueue_locked(queue, task);
287 /* The lock is released inside. */
288
289 return (res);
290}
291
292static void
293taskqueue_timeout_func(void *arg)

Callers 15

taskq_dispatchFunction · 0.85
taskq_dispatch_entFunction · 0.85
zfs_rmnodeFunction · 0.85
pf_src_connlimitFunction · 0.85
dummynetFunction · 0.85
ieee80211_runtaskFunction · 0.85
ieee80211_restart_allFunction · 0.85
carp_demote_adjFunction · 0.85
arge_miibus_statchgFunction · 0.85
are_miibus_statchgFunction · 0.85
cvm_do_timerFunction · 0.85

Calls 1

taskqueue_enqueue_lockedFunction · 0.85

Tested by

no test coverage detected