Files

54 lines
937 B
C

/*
2 kthreads!!! Will they interleave??? Yup.
*/
#include <linux/delay.h> /* usleep_range */
#include <linux/kernel.h>
#include <linux/kthread.h>
#include <linux/module.h>
MODULE_LICENSE("GPL");
static struct task_struct *kthread1, *kthread2;
static int work_func1(void *data)
{
int i = 0;
while (!kthread_should_stop()) {
printk(KERN_INFO "1 %d\n", i);
usleep_range(1000000, 1000001);
i++;
if (i == 10)
i = 0;
}
return 0;
}
static int work_func2(void *data)
{
int i = 0;
while (!kthread_should_stop()) {
printk(KERN_INFO "2 %d\n", i);
usleep_range(1000000, 1000001);
i++;
if (i == 10)
i = 0;
}
return 0;
}
int init_module(void)
{
kthread1 = kthread_create(work_func1, NULL, "mykthread1");
kthread2 = kthread_create(work_func2, NULL, "mykthread2");
wake_up_process(kthread1);
wake_up_process(kthread2);
return 0;
}
void cleanup_module(void)
{
kthread_stop(kthread1);
kthread_stop(kthread2);
}