mirror of /home/gitosis/repositories/libev.git
*** empty log message ***
parent
e1ac783eac
commit
5250496598
3
Changes
3
Changes
|
@ -15,6 +15,9 @@ TODO: document portability requirements for atomic pointer access
|
|||
TODO: possible cb aliasing?
|
||||
TODO: document requirements for function pointers and calling conventions.
|
||||
|
||||
- when not using autoconf, tighten the check for clock_gettime and related
|
||||
functionality.
|
||||
|
||||
4.18 Fri Sep 5 17:55:26 CEST 2014
|
||||
- events on files were not always generated properly with the
|
||||
epoll backend (testcase by Assaf Inbal).
|
||||
|
|
9
ev.c
9
ev.c
|
@ -258,6 +258,15 @@
|
|||
# endif
|
||||
#endif
|
||||
|
||||
#if !(_POSIX_TIMERS > 0)
|
||||
# ifndef EV_USE_MONOTONIC
|
||||
# define EV_USE_MONOTONIC 0
|
||||
# endif
|
||||
# ifndef EV_USE_REALTIME
|
||||
# define EV_USE_REALTIME 0
|
||||
# endif
|
||||
#endif
|
||||
|
||||
#ifndef EV_USE_MONOTONIC
|
||||
# if defined _POSIX_MONOTONIC_CLOCK && _POSIX_MONOTONIC_CLOCK >= 0
|
||||
# define EV_USE_MONOTONIC EV_FEATURE_OS
|
||||
|
|
Loading…
Reference in New Issue