1. NAME

destroy_workqueue - safely terminate a workqueue

2. SYNOPSIS

void destroy_workqueue(struct workqueue_struct *  wq );

3. ARGUMENTS

wq
    target workqueue

4. DESCRIPTION

Safely destroy a workqueue. All work currently pending will be done first.

5. COPYRIGHT