mirror of /home/gitosis/repositories/libev.git
*** empty log message ***
This commit is contained in:
parent
04d1232384
commit
afe98cb388
4
ev++.h
4
ev++.h
|
@ -517,9 +517,9 @@ namespace ev {
|
|||
}
|
||||
};
|
||||
|
||||
inline tstamp now () throw ()
|
||||
inline tstamp now (EV_P) throw ()
|
||||
{
|
||||
return ev_time ();
|
||||
return ev_now (EV_A);
|
||||
}
|
||||
|
||||
inline void delay (tstamp interval) throw ()
|
||||
|
|
2
ev.pod
2
ev.pod
|
@ -1022,7 +1022,7 @@ each call to a libev function.
|
|||
|
||||
However, C<ev_run> can run an indefinite time, so it is not feasible
|
||||
to wait for it to return. One way around this is to wake up the event
|
||||
loop via C<ev_break> and C<av_async_send>, another way is to set these
|
||||
loop via C<ev_break> and C<ev_async_send>, another way is to set these
|
||||
I<release> and I<acquire> callbacks on the loop.
|
||||
|
||||
When set, then C<release> will be called just before the thread is
|
||||
|
|
Loading…
Reference in New Issue