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

Function taskqueue_cancel

freebsd/kern/subr_taskqueue.c:548–558  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

546}
547
548int
549taskqueue_cancel(struct taskqueue *queue, struct task *task, u_int *pendp)
550{
551 int error;
552
553 TQ_LOCK(queue);
554 error = taskqueue_cancel_locked(queue, task, pendp);
555 TQ_UNLOCK(queue);
556
557 return (error);
558}
559
560int
561taskqueue_cancel_timeout(struct taskqueue *queue,

Callers 2

taskq_cancel_idFunction · 0.85
zfs_umountFunction · 0.85

Calls 1

taskqueue_cancel_lockedFunction · 0.85

Tested by

no test coverage detected