Re: [Xen-devel] xe timer

2015-03-20 Thread Ian Campbell
On Fri, 2015-03-20 at 00:41 +0100, HANNAS YAYA Issa wrote: > when I compile xen the timer run only once. I believe Xen timers are one-shot only. If you want a periodic timer then you will need to rearm it at the end of your handler. Check the plt_overflow_timer for an example of this sort of thin

[Xen-devel] xe timer

2015-03-19 Thread HANNAS YAYA Issa
Hello I want to implement in xen hypervisor but I don't know how to do it. I search in google but I do not found how to use the xen timer (not linux). when I compile xen the timer run only once. here is my code. static void timer_handler(void *unused) { printk("hello world in timer\n")