Two more GPL only symbols moved to helper functions in the spl module.

git-svn-id: https://outreach.scidac.gov/svn/spl/trunk@37 7e1ea52c-4ff2-0310-8f11-9dd32ca42a1c
This commit is contained in:
behlendo
2008-03-11 02:08:57 +00:00
parent ee4766827a
commit b123971fc2
2 changed files with 18 additions and 2 deletions
+14
View File
@@ -78,3 +78,17 @@ __taskq_create(const char *name, int nthreads, pri_t pri,
return create_singlethread_workqueue(name);
}
EXPORT_SYMBOL(__taskq_create);
void
__taskq_destroy(taskq_t *tq)
{
destroy_workqueue(tq);
}
EXPORT_SYMBOL(__taskq_destroy);
void
__taskq_wait(taskq_t *tq)
{
flush_workqueue(tq);
}
EXPORT_SYMBOL(__taskq_wait);