While reading the doc in libev I find some C code of which the syntax is quite weird.
static void
stdin_cb (EV_P_ ev_io *w, int revents)
{
puts ("stdin ready");
// for one-shot events, one must manually stop the watcher
// with its corresponding stop function.
ev_io_stop (EV_A_ w);
// this causes all nested ev_run's to stop iterating
ev_break (EV_A_ EVBREAK_ALL);
}
I'm not sure what the EV_P_
is here, could anyone help explain it to me?
I have tried to google the syntax of method signature in C but no good matches.
See ev.h:
Therefore the line
expands to
or
depending on the value of
EV_MULTIPLICITY
As pointed out by @Shawn, there is a Macro magic section that explains it: