diff options
| author | root <root> | 2007-11-11 01:53:07 +0000 | 
|---|---|---|
| committer | root <root> | 2007-11-11 01:53:07 +0000 | 
| commit | 5b227372822f2ade98804c5fd403c48d096887b8 (patch) | |
| tree | 5750e1f85cdb8efa7e92b03eb02fedcec90141c1 | |
| parent | 768c054f55b73450822bd8c4358a4187cd1b8df8 (diff) | |
fix stop function of idle/check/prepare/child
| -rw-r--r-- | ev.c | 8 | 
1 files changed, 6 insertions, 2 deletions
@@ -37,8 +37,12 @@ extern "C" {  # include "config.h"  # if HAVE_CLOCK_GETTIME -#  define EV_USE_MONOTONIC 1 -#  define EV_USE_REALTIME  1 +#  ifndef EV_USE_MONOTONIC +#   define EV_USE_MONOTONIC 1 +#  endif +#  ifndef EV_USE_REALTIME +#   define EV_USE_REALTIME  1 +#  endif  # endif  # if HAVE_SELECT && HAVE_SYS_SELECT_H && !defined (EV_USE_SELECT)  | 
