create_singlethread_workqueue
struct workqueue_struct *create_singlethread_workqueue(const char *name);
Creates a workqueue. Each workqueue has one dedicated processes ("kernel threads"), which run functions submitted to the queue.
Creates a workqueue. Each workqueue has one dedicated processes ("kernel threads"), which run functions submitted to the queue.
Comments