Re: [Libevent-users] [PATCH] Do not call gettime in timeout_process if the timetree is empty

2007-09-20 Thread Christopher Layne
On Thu, Sep 20, 2007 at 01:52:31PM +0200, Trond Norbye wrote: The result of gettime is not used if the timetree is empty (and might cause a context switch to get the system clock). --Trond Index: event.c === --- event.c

Re: [Libevent-users] [PATCH] Do not call gettime in timeout_process if the timetree is empty

2007-09-20 Thread Nick Mathewson
On Thu, Sep 20, 2007 at 03:14:51PM +0200, Trond Norbye wrote: [...] Why not just return if RB_EMPTY() is true rather than adding another level of indention? Some people (I'm not one of them) dislikes multiple return statements from a function, so I just added the extra level to avoid