*** empty log message ***

master
Marc Alexander Lehmann 2015-01-19 16:45:19 +00:00
parent be06357069
commit a5f210671e
3 changed files with 4 additions and 3 deletions

View File

@ -15,7 +15,7 @@ TODO: document portability requirements for atomic pointer access
TODO: possible cb aliasing?
TODO: document requirements for function pointers and calling conventions.
- prfer noexcept over throw () with C++ 11.
- prefer noexcept over throw () with C++ 11.
4.19 Thu Sep 25 08:18:25 CEST 2014
- ev.h wasn't valid C++ anymore, which tripped compilers other than

View File

@ -4,7 +4,8 @@ orig_CFLAGS="$CFLAGS"
AC_CONFIG_SRCDIR([ev_epoll.c])
AM_INIT_AUTOMAKE(libev,4.19) dnl also update ev.h!
dnl also update ev.h!
AM_INIT_AUTOMAKE(libev,4.19)
AC_CONFIG_HEADERS([config.h])
AM_MAINTAINER_MODE

2
ev.h
View File

@ -664,7 +664,7 @@ EV_API_DECL void ev_set_userdata (EV_P_ void *data) EV_THROW;
EV_API_DECL void *ev_userdata (EV_P) EV_THROW;
typedef void (*ev_loop_callback)(EV_P);
EV_API_DECL void ev_set_invoke_pending_cb (EV_P_ ev_loop_callback invoke_pending_cb) EV_THROW;
/* C++ doesn't allow the use of the ev_loop_callback typedef here, so we need to spell it out*/
/* C++ doesn't allow the use of the ev_loop_callback typedef here, so we need to spell it out */
EV_API_DECL void ev_set_loop_release_cb (EV_P_ void (*release)(EV_P) EV_THROW, void (*acquire)(EV_P) EV_THROW) EV_THROW;
EV_API_DECL unsigned int ev_pending_count (EV_P) EV_THROW; /* number of pending events, if any */