optimise ev_now when \!MULTIPLICITY

master
Marc Alexander Lehmann 2007-11-10 03:19:21 +00:00
parent 097143d2e7
commit 66dc7ad27c
3 changed files with 3 additions and 2 deletions

2
ev.c
View File

@ -223,6 +223,7 @@ typedef struct
struct ev_loop
{
ev_tstamp ev_rt_now;
#define VAR(name,decl) decl;
#include "ev_vars.h"
#undef VAR
@ -234,6 +235,7 @@ typedef struct
#else
ev_tstamp ev_rt_now;
#define VAR(name,decl) static decl;
#include "ev_vars.h"
#undef VAR

2
ev.h
View File

@ -272,7 +272,7 @@ int ev_default_loop (int methods); /* returns true when successful */
static ev_tstamp
ev_now ()
{
extern ev_rt_now;
extern ev_tstamp ev_rt_now;
return ev_rt_now;
}

View File

@ -2,7 +2,6 @@
VARx(ev_tstamp, now_floor) /* last time we refreshed rt_time */
VARx(ev_tstamp, mn_now) /* monotonic clock "now" */
VARx(ev_tstamp, ev_rt_now)
VARx(ev_tstamp, rtmn_diff) /* difference realtime - monotonic time */
VARx(int, method)