ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/libev/ev.pod
(Generate patch)

Comparing libev/ev.pod (file contents):
Revision 1.289 by root, Tue Mar 16 17:11:49 2010 UTC vs.
Revision 1.291 by root, Tue Mar 16 20:32:20 2010 UTC

345useful to try out specific backends to test their performance, or to work 345useful to try out specific backends to test their performance, or to work
346around bugs. 346around bugs.
347 347
348=item C<EVFLAG_FORKCHECK> 348=item C<EVFLAG_FORKCHECK>
349 349
350Instead of calling C<ev_default_fork> or C<ev_loop_fork> manually after 350Instead of calling C<ev_loop_fork> manually after a fork, you can also
351a fork, you can also make libev check for a fork in each iteration by 351make libev check for a fork in each iteration by enabling this flag.
352enabling this flag.
353 352
354This works by calling C<getpid ()> on every iteration of the loop, 353This works by calling C<getpid ()> on every iteration of the loop,
355and thus this might slow down your event loop if you do a lot of loop 354and thus this might slow down your event loop if you do a lot of loop
356iterations and little real work, but is usually not noticeable (on my 355iterations and little real work, but is usually not noticeable (on my
357GNU/Linux system for example, C<getpid> is actually a simple 5-insn sequence 356GNU/Linux system for example, C<getpid> is actually a simple 5-insn sequence
567 ev_default_loop (ev_recommended_backends () | EVBACKEND_KQUEUE); 566 ev_default_loop (ev_recommended_backends () | EVBACKEND_KQUEUE);
568 567
569=item struct ev_loop *ev_loop_new (unsigned int flags) 568=item struct ev_loop *ev_loop_new (unsigned int flags)
570 569
571Similar to C<ev_default_loop>, but always creates a new event loop that is 570Similar to C<ev_default_loop>, but always creates a new event loop that is
572always distinct from the default loop. Unlike the default loop, it cannot 571always distinct from the default loop.
573handle signal and child watchers, and attempts to do so will be greeted by
574undefined behaviour (or a failed assertion if assertions are enabled).
575 572
576Note that this function I<is> thread-safe, and the recommended way to use 573Note that this function I<is> thread-safe, and one common way to use
577libev with threads is indeed to create one loop per thread, and using the 574libev with threads is indeed to create one loop per thread, and using the
578default loop in the "main" or "initial" thread. 575default loop in the "main" or "initial" thread.
579 576
580Example: Try to create a event loop that uses epoll and nothing else. 577Example: Try to create a event loop that uses epoll and nothing else.
581 578
583 if (!epoller) 580 if (!epoller)
584 fatal ("no epoll found here, maybe it hides under your chair"); 581 fatal ("no epoll found here, maybe it hides under your chair");
585 582
586=item ev_default_destroy () 583=item ev_default_destroy ()
587 584
588Destroys the default loop again (frees all memory and kernel state 585Destroys the default loop (frees all memory and kernel state etc.). None
589etc.). None of the active event watchers will be stopped in the normal 586of the active event watchers will be stopped in the normal sense, so
590sense, so e.g. C<ev_is_active> might still return true. It is your 587e.g. C<ev_is_active> might still return true. It is your responsibility to
591responsibility to either stop all watchers cleanly yourself I<before> 588either stop all watchers cleanly yourself I<before> calling this function,
592calling this function, or cope with the fact afterwards (which is usually 589or cope with the fact afterwards (which is usually the easiest thing, you
593the easiest thing, you can just ignore the watchers and/or C<free ()> them 590can just ignore the watchers and/or C<free ()> them for example).
594for example).
595 591
596Note that certain global state, such as signal state (and installed signal 592Note that certain global state, such as signal state (and installed signal
597handlers), will not be freed by this function, and related watchers (such 593handlers), will not be freed by this function, and related watchers (such
598as signal and child watchers) would need to be stopped manually. 594as signal and child watchers) would need to be stopped manually.
599 595
614name, you can call it anytime, but it makes most sense after forking, in 610name, you can call it anytime, but it makes most sense after forking, in
615the child process (or both child and parent, but that again makes little 611the child process (or both child and parent, but that again makes little
616sense). You I<must> call it in the child before using any of the libev 612sense). You I<must> call it in the child before using any of the libev
617functions, and it will only take effect at the next C<ev_loop> iteration. 613functions, and it will only take effect at the next C<ev_loop> iteration.
618 614
615Again, you I<have> to call it on I<any> loop that you want to re-use after
616a fork, I<even if you do not plan to use the loop in the parent>. This is
617because some kernel interfaces *cough* I<kqueue> *cough* do funny things
618during fork.
619
619On the other hand, you only need to call this function in the child 620On the other hand, you only need to call this function in the child
620process if and only if you want to use the event library in the child. If 621process if and only if you want to use the event loop in the child. If you
621you just fork+exec, you don't have to call it at all. 622just fork+exec or create a new loop in the child, you don't have to call
623it at all.
622 624
623The function itself is quite fast and it's usually not a problem to call 625The function itself is quite fast and it's usually not a problem to call
624it just in case after a fork. To make this easy, the function will fit in 626it just in case after a fork. To make this easy, the function will fit in
625quite nicely into a call to C<pthread_atfork>: 627quite nicely into a call to C<pthread_atfork>:
626 628
628 630
629=item ev_loop_fork (loop) 631=item ev_loop_fork (loop)
630 632
631Like C<ev_default_fork>, but acts on an event loop created by 633Like C<ev_default_fork>, but acts on an event loop created by
632C<ev_loop_new>. Yes, you have to call this on every allocated event loop 634C<ev_loop_new>. Yes, you have to call this on every allocated event loop
633after fork that you want to re-use in the child, and how you do this is 635after fork that you want to re-use in the child, and how you keep track of
634entirely your own problem. 636them is entirely your own problem.
635 637
636=item int ev_is_default_loop (loop) 638=item int ev_is_default_loop (loop)
637 639
638Returns true when the given loop is, in fact, the default loop, and false 640Returns true when the given loop is, in fact, the default loop, and false
639otherwise. 641otherwise.
640 642
641=item unsigned int ev_loop_count (loop) 643=item unsigned int ev_iteration (loop)
642 644
643Returns the count of loop iterations for the loop, which is identical to 645Returns the current iteration count for the loop, which is identical to
644the number of times libev did poll for new events. It starts at C<0> and 646the number of times libev did poll for new events. It starts at C<0> and
645happily wraps around with enough iterations. 647happily wraps around with enough iterations.
646 648
647This value can sometimes be useful as a generation counter of sorts (it 649This value can sometimes be useful as a generation counter of sorts (it
648"ticks" the number of loop iterations), as it roughly corresponds with 650"ticks" the number of loop iterations), as it roughly corresponds with
649C<ev_prepare> and C<ev_check> calls. 651C<ev_prepare> and C<ev_check> calls - and is incremented between the
652prepare and check phases.
650 653
651=item unsigned int ev_loop_depth (loop) 654=item unsigned int ev_depth (loop)
652 655
653Returns the number of times C<ev_loop> was entered minus the number of 656Returns the number of times C<ev_loop> was entered minus the number of
654times C<ev_loop> was exited, in other words, the recursion depth. 657times C<ev_loop> was exited, in other words, the recursion depth.
655 658
656Outside C<ev_loop>, this number is zero. In a callback, this number is 659Outside C<ev_loop>, this number is zero. In a callback, this number is
657C<1>, unless C<ev_loop> was invoked recursively (or from another thread), 660C<1>, unless C<ev_loop> was invoked recursively (or from another thread),
658in which case it is higher. 661in which case it is higher.
659 662
660Leaving C<ev_loop> abnormally (setjmp/longjmp, cancelling the thread 663Leaving C<ev_loop> abnormally (setjmp/longjmp, cancelling the thread
661etc.), doesn't count as exit. 664etc.), doesn't count as "exit" - consider this as a hint to avoid such
665ungentleman behaviour unless it's really convenient.
662 666
663=item unsigned int ev_backend (loop) 667=item unsigned int ev_backend (loop)
664 668
665Returns one of the C<EVBACKEND_*> flags indicating the event backend in 669Returns one of the C<EVBACKEND_*> flags indicating the event backend in
666use. 670use.
4621involves iterating over all running async watchers or all signal numbers. 4625involves iterating over all running async watchers or all signal numbers.
4622 4626
4623=back 4627=back
4624 4628
4625 4629
4626=head1 PORTING FROM 3.X TO 4.X 4630=head1 PORTING FROM LIBEV 3.X TO 4.X
4627 4631
4628The major version 4 introduced some minor incompatible changes to the API. 4632The major version 4 introduced some minor incompatible changes to the API.
4629 4633
4634At the moment, the C<ev.h> header file tries to implement superficial
4635compatibility, so most programs should still compile. Those might be
4636removed in later versions of libev, so better update early than late.
4637
4630=over 4 4638=over 4
4631 4639
4640=item C<ev_loop_count> renamed to C<ev_iteration>
4641
4642=item C<ev_loop_depth> renamed to C<ev_depth>
4643
4644=item C<ev_loop_verify> renamed to C<ev_verify>
4645
4646Most functions working on C<struct ev_loop> objects don't have an
4647C<ev_loop_> prefix, so it was removed. Note that C<ev_loop_fork> is
4648still called C<ev_loop_fork> because it would otherwise clash with the
4649C<ev_frok> typedef.
4650
4632=item C<EV_TIMEOUT> replaced by C<EV_TIMER> in C<revents> 4651=item C<EV_TIMEOUT> renamed to C<EV_TIMER> in C<revents>
4633 4652
4634This is a simple rename - all other watcher types use their name 4653This is a simple rename - all other watcher types use their name
4635as revents flag, and now C<ev_timer> does, too. 4654as revents flag, and now C<ev_timer> does, too.
4636 4655
4637Both C<EV_TIMER> and C<EV_TIMEOUT> symbols were present in 3.x versions 4656Both C<EV_TIMER> and C<EV_TIMEOUT> symbols were present in 3.x versions

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines