]> git.llucax.com Git - software/libev.git/commitdiff
*** empty log message ***
authorroot <root>
Mon, 12 Nov 2007 06:34:49 +0000 (06:34 +0000)
committerroot <root>
Mon, 12 Nov 2007 06:34:49 +0000 (06:34 +0000)
ev.c
ev.h

diff --git a/ev.c b/ev.c
index ff47bd25c4119d15c7f4686bc624fd9cae8e5e32..916d3e601c82d0e49dc94a35349694b491ade6ec 100644 (file)
--- a/ev.c
+++ b/ev.c
@@ -748,7 +748,7 @@ enable_secure (void)
 #endif
 }
 
-int
+unsigned int
 ev_method (EV_P)
 {
   return method;
diff --git a/ev.h b/ev.h
index 62200da06a33f43af06a49880a9f0b57e97ca91f..111be8ecdcf4bc435309e6b500d84c88a4c0ea2b 100644 (file)
--- a/ev.h
+++ b/ev.h
@@ -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 */