diff options
| author | root <root> | 2007-11-12 06:34:49 +0000 | 
|---|---|---|
| committer | root <root> | 2007-11-12 06:34:49 +0000 | 
| commit | 1c07891d9c059843fa4dcc0d0fa340676816d259 (patch) | |
| tree | de2f79d84417657448bf0c2d062137569a500f13 | |
| parent | c7a6958051fa283b6c7a30962ee616cccb306d01 (diff) | |
*** empty log message ***
| -rw-r--r-- | ev.c | 2 | ||||
| -rw-r--r-- | ev.h | 6 | 
2 files changed, 4 insertions, 4 deletions
| @@ -748,7 +748,7 @@ enable_secure (void)  #endif  } -int +unsigned int  ev_method (EV_P)  {    return method; @@ -233,7 +233,7 @@ union ev_any_watcher  /* bits for ev_default_loop and ev_loop_new */  /* the default */ -#define EVMETHOD_AUTO    0x00000000 /* not quite a mask */ +#define EVFLAG_AUTO      0x00000000 /* not quite a mask */  /* method bits to be ored together */  #define EVMETHOD_SELECT  0x00000001 /* about anywhere */ @@ -244,7 +244,7 @@ union ev_any_watcher  #define EVMETHOD_PORT    0x00000020 /* solaris 10 */ /* NYI */  /* flag bits */ -#define EVMETHOD_NOENV   0x01000000 /* do NOT consult environment */ +#define EVFLAG_NOENV     0x01000000 /* do NOT consult environment */  #if EV_PROTOTYPES  int ev_version_major (void); @@ -298,7 +298,7 @@ void ev_default_destroy (void); /* destroy the default loop */  /* you can actually call it at any time, anywhere :) */  void ev_default_fork (void); -int ev_method (EV_P); +unsigned int ev_method (EV_P);  #endif  #define EVLOOP_NONBLOCK	1 /* do not block/wait */ | 
