mirror of
https://github.com/sysprog21/lkmpg.git
synced 2024-11-22 15:46:59 +08:00
eef2bc4395
The only exception is to indent with four spaces rather than tabs for sticking to compact layout of source listing. Close #87
34 lines
634 B
C
34 lines
634 B
C
/*
|
|
* sched.c
|
|
*/
|
|
#include <linux/init.h>
|
|
#include <linux/module.h>
|
|
#include <linux/workqueue.h>
|
|
|
|
static struct workqueue_struct *queue = NULL;
|
|
static struct work_struct work;
|
|
|
|
static void work_handler(struct work_struct *data)
|
|
{
|
|
pr_info("work handler function.\n");
|
|
}
|
|
|
|
static int __init sched_init(void)
|
|
{
|
|
queue = alloc_workqueue("HELLOWORLD", WQ_UNBOUND, 1);
|
|
INIT_WORK(&work, work_handler);
|
|
schedule_work(&work);
|
|
return 0;
|
|
}
|
|
|
|
static void __exit sched_exit(void)
|
|
{
|
|
destroy_workqueue(queue);
|
|
}
|
|
|
|
module_init(sched_init);
|
|
module_exit(sched_exit);
|
|
|
|
MODULE_LICENSE("GPL");
|
|
MODULE_DESCRIPTION("Workqueue example");
|