Linux的hrtimer例子

main.c

//似乎都是在驱动程序里使用的hrtimer
#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/hrtimer.h>
#include <linux/jiffies.h>


static struct hrtimer timer;
ktime_t kt;

static enum hrtimer_restart hrtimer_handler(struct hrtimer *timer)
{
 //kt = ktime_set(1, 10);
 printk(" ------ I am in hrtimer -----\n");
 hrtimer_forward(timer, timer->base->get_time(), kt);
 return HRTIMER_RESTART;
 }

static int __init test_init(void)
{

 pr_info("timer resolution: %lu\n", TICK_NSEC);
 kt = ktime_set(1, 10); /* 1 sec, 10 nsec */
 hrtimer_init(&timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
 //hrtimer_set_expires(&timer, kt);
 hrtimer_start(&timer, kt, HRTIMER_MODE_REL);//中断触发周期为:1sec + 10 nsec
 timer.function = hrtimer_handler;

 printk("\n-------- test start ---------\n");
 return 0;
}

static void __exit test_exit(void)
{
 hrtimer_cancel(&timer);
 printk("-------- test over ----------\n");
 return;
}

MODULE_LICENSE("GPL");

module_init(test_init);
module_exit(test_exit);
Makefile:


KVERS = $(shell uname -r)
#Kernel modules
NAME = main.o
obj-m += $(NAME)

#specify flags for the module compilation.
#EXTRA_CFLAGS=-g -O0

build:kernel_modules

kernel_modules:
    make -C /lib/modules/$(KVERS)/build M=$(CURDIR) modules

clean:
    make -C /lib/modules/$(KVERS)/build M=$(CURDIR) clean


猜你喜欢

转载自blog.csdn.net/liuzq/article/details/79283180