From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ian Campbell Subject: Re: xe timer Date: Fri, 20 Mar 2015 09:51:48 +0000 Message-ID: <1426845108.21742.109.camel@citrix.com> References: <84c401e55a1e26e5ca192f547457d314@inp-toulouse.fr> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <84c401e55a1e26e5ca192f547457d314@inp-toulouse.fr> List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xen.org Errors-To: xen-devel-bounces@lists.xen.org To: HANNAS YAYA Issa Cc: xen-devel@lists.xen.org List-Id: xen-devel@lists.xenproject.org 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 thing. Ian.