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

Comparing libev/ev.h (file contents):
Revision 1.176 by root, Tue Sep 9 13:28:21 2014 UTC vs.
Revision 1.190 by root, Fri Dec 21 06:54:30 2018 UTC

1/* 1/*
2 * libev native API header 2 * libev native API header
3 * 3 *
4 * Copyright (c) 2007,2008,2009,2010,2011,2012 Marc Alexander Lehmann <libev@schmorp.de> 4 * Copyright (c) 2007-2018 Marc Alexander Lehmann <libev@schmorp.de>
5 * All rights reserved. 5 * All rights reserved.
6 * 6 *
7 * Redistribution and use in source and binary forms, with or without modifica- 7 * Redistribution and use in source and binary forms, with or without modifica-
8 * tion, are permitted provided that the following conditions are met: 8 * tion, are permitted provided that the following conditions are met:
9 * 9 *
40#ifndef EV_H_ 40#ifndef EV_H_
41#define EV_H_ 41#define EV_H_
42 42
43#ifdef __cplusplus 43#ifdef __cplusplus
44# define EV_CPP(x) x 44# define EV_CPP(x) x
45# if __cplusplus >= 201103L
46# define EV_NOEXCEPT noexcept
47# else
48# define EV_NOEXCEPT
49# endif
45#else 50#else
46# define EV_CPP(x) 51# define EV_CPP(x)
52# define EV_NOEXCEPT
47#endif 53#endif
48 54#define EV_THROW EV_NOEXCEPT /* pre-4.25, do not use in new code */
49#define EV_THROW EV_CPP(throw())
50
51#if __APPLE__ && __clang__
52# undef EV_THROW
53# define EV_THROW
54#endif
55 55
56EV_CPP(extern "C" {) 56EV_CPP(extern "C" {)
57 57
58/*****************************************************************************/ 58/*****************************************************************************/
59 59
150#endif 150#endif
151 151
152/*****************************************************************************/ 152/*****************************************************************************/
153 153
154typedef double ev_tstamp; 154typedef double ev_tstamp;
155
156#include <string.h> /* for memmove */
155 157
156#ifndef EV_ATOMIC_T 158#ifndef EV_ATOMIC_T
157# include <signal.h> 159# include <signal.h>
158# define EV_ATOMIC_T sig_atomic_t volatile 160# define EV_ATOMIC_T sig_atomic_t volatile
159#endif 161#endif
208#endif 210#endif
209 211
210/*****************************************************************************/ 212/*****************************************************************************/
211 213
212#define EV_VERSION_MAJOR 4 214#define EV_VERSION_MAJOR 4
213#define EV_VERSION_MINOR 18 215#define EV_VERSION_MINOR 25
214 216
215/* eventmask, revents, events... */ 217/* eventmask, revents, events... */
216enum { 218enum {
217 EV_UNDEF = (int)0xFFFFFFFF, /* guaranteed to be invalid */ 219 EV_UNDEF = (int)0xFFFFFFFF, /* guaranteed to be invalid */
218 EV_NONE = 0x00, /* no events */ 220 EV_NONE = 0x00, /* no events */
336{ 338{
337 EV_WATCHER_TIME (ev_periodic) 339 EV_WATCHER_TIME (ev_periodic)
338 340
339 ev_tstamp offset; /* rw */ 341 ev_tstamp offset; /* rw */
340 ev_tstamp interval; /* rw */ 342 ev_tstamp interval; /* rw */
341 ev_tstamp (*reschedule_cb)(struct ev_periodic *w, ev_tstamp now) EV_THROW; /* rw */ 343 ev_tstamp (*reschedule_cb)(struct ev_periodic *w, ev_tstamp now) EV_NOEXCEPT; /* rw */
342} ev_periodic; 344} ev_periodic;
343 345
344/* invoked when the given signal has been received */ 346/* invoked when the given signal has been received */
345/* revent EV_SIGNAL */ 347/* revent EV_SIGNAL */
346typedef struct ev_signal 348typedef struct ev_signal
512 EVFLAG_NOSIGMASK = 0x00400000U /* avoid modifying the signal mask */ 514 EVFLAG_NOSIGMASK = 0x00400000U /* avoid modifying the signal mask */
513}; 515};
514 516
515/* method bits to be ored together */ 517/* method bits to be ored together */
516enum { 518enum {
517 EVBACKEND_SELECT = 0x00000001U, /* about anywhere */ 519 EVBACKEND_SELECT = 0x00000001U, /* available just about anywhere */
518 EVBACKEND_POLL = 0x00000002U, /* !win */ 520 EVBACKEND_POLL = 0x00000002U, /* !win, !aix, broken on osx */
519 EVBACKEND_EPOLL = 0x00000004U, /* linux */ 521 EVBACKEND_EPOLL = 0x00000004U, /* linux */
520 EVBACKEND_KQUEUE = 0x00000008U, /* bsd */ 522 EVBACKEND_KQUEUE = 0x00000008U, /* bsd, broken on osx */
521 EVBACKEND_DEVPOLL = 0x00000010U, /* solaris 8 */ /* NYI */ 523 EVBACKEND_DEVPOLL = 0x00000010U, /* solaris 8 */ /* NYI */
522 EVBACKEND_PORT = 0x00000020U, /* solaris 10 */ 524 EVBACKEND_PORT = 0x00000020U, /* solaris 10 */
523 EVBACKEND_ALL = 0x0000003FU, /* all known backends */ 525 EVBACKEND_ALL = 0x0000003FU, /* all known backends */
524 EVBACKEND_MASK = 0x0000FFFFU /* all future backends */ 526 EVBACKEND_MASK = 0x0000FFFFU /* all future backends */
525}; 527};
526 528
527#if EV_PROTOTYPES 529#if EV_PROTOTYPES
528EV_API_DECL int ev_version_major (void) EV_THROW; 530EV_API_DECL int ev_version_major (void) EV_NOEXCEPT;
529EV_API_DECL int ev_version_minor (void) EV_THROW; 531EV_API_DECL int ev_version_minor (void) EV_NOEXCEPT;
530 532
531EV_API_DECL unsigned int ev_supported_backends (void) EV_THROW; 533EV_API_DECL unsigned int ev_supported_backends (void) EV_NOEXCEPT;
532EV_API_DECL unsigned int ev_recommended_backends (void) EV_THROW; 534EV_API_DECL unsigned int ev_recommended_backends (void) EV_NOEXCEPT;
533EV_API_DECL unsigned int ev_embeddable_backends (void) EV_THROW; 535EV_API_DECL unsigned int ev_embeddable_backends (void) EV_NOEXCEPT;
534 536
535EV_API_DECL ev_tstamp ev_time (void) EV_THROW; 537EV_API_DECL ev_tstamp ev_time (void) EV_NOEXCEPT;
536EV_API_DECL void ev_sleep (ev_tstamp delay) EV_THROW; /* sleep for a while */ 538EV_API_DECL void ev_sleep (ev_tstamp delay) EV_NOEXCEPT; /* sleep for a while */
537 539
538/* Sets the allocation function to use, works like realloc. 540/* Sets the allocation function to use, works like realloc.
539 * It is used to allocate and free memory. 541 * It is used to allocate and free memory.
540 * If it returns zero when memory needs to be allocated, the library might abort 542 * If it returns zero when memory needs to be allocated, the library might abort
541 * or take some potentially destructive action. 543 * or take some potentially destructive action.
542 * The default is your system realloc function. 544 * The default is your system realloc function.
543 */ 545 */
544EV_API_DECL void ev_set_allocator (void *(*cb)(void *ptr, long size) EV_THROW) EV_THROW; 546EV_API_DECL void ev_set_allocator (void *(*cb)(void *ptr, long size) EV_NOEXCEPT) EV_NOEXCEPT;
545 547
546/* set the callback function to call on a 548/* set the callback function to call on a
547 * retryable syscall error 549 * retryable syscall error
548 * (such as failed select, poll, epoll_wait) 550 * (such as failed select, poll, epoll_wait)
549 */ 551 */
550EV_API_DECL void ev_set_syserr_cb (void (*cb)(const char *msg) EV_THROW) EV_THROW; 552EV_API_DECL void ev_set_syserr_cb (void (*cb)(const char *msg) EV_NOEXCEPT) EV_NOEXCEPT;
551 553
552#if EV_MULTIPLICITY 554#if EV_MULTIPLICITY
553 555
554/* the default loop is the only one that handles signals and child watchers */ 556/* the default loop is the only one that handles signals and child watchers */
555/* you can call this as often as you like */ 557/* you can call this as often as you like */
556EV_API_DECL struct ev_loop *ev_default_loop (unsigned int flags EV_CPP (= 0)) EV_THROW; 558EV_API_DECL struct ev_loop *ev_default_loop (unsigned int flags EV_CPP (= 0)) EV_NOEXCEPT;
557 559
558#ifdef EV_API_STATIC 560#ifdef EV_API_STATIC
559EV_API_DECL struct ev_loop *ev_default_loop_ptr; 561EV_API_DECL struct ev_loop *ev_default_loop_ptr;
560#endif 562#endif
561 563
562EV_INLINE struct ev_loop * 564EV_INLINE struct ev_loop *
563ev_default_loop_uc_ (void) EV_THROW 565ev_default_loop_uc_ (void) EV_NOEXCEPT
564{ 566{
565 extern struct ev_loop *ev_default_loop_ptr; 567 extern struct ev_loop *ev_default_loop_ptr;
566 568
567 return ev_default_loop_ptr; 569 return ev_default_loop_ptr;
568} 570}
569 571
570EV_INLINE int 572EV_INLINE int
571ev_is_default_loop (EV_P) EV_THROW 573ev_is_default_loop (EV_P) EV_NOEXCEPT
572{ 574{
573 return EV_A == EV_DEFAULT_UC; 575 return EV_A == EV_DEFAULT_UC;
574} 576}
575 577
576/* create and destroy alternative loops that don't handle signals */ 578/* create and destroy alternative loops that don't handle signals */
577EV_API_DECL struct ev_loop *ev_loop_new (unsigned int flags EV_CPP (= 0)) EV_THROW; 579EV_API_DECL struct ev_loop *ev_loop_new (unsigned int flags EV_CPP (= 0)) EV_NOEXCEPT;
578 580
579EV_API_DECL ev_tstamp ev_now (EV_P) EV_THROW; /* time w.r.t. timers and the eventloop, updated after each poll */ 581EV_API_DECL ev_tstamp ev_now (EV_P) EV_NOEXCEPT; /* time w.r.t. timers and the eventloop, updated after each poll */
580 582
581#else 583#else
582 584
583EV_API_DECL int ev_default_loop (unsigned int flags EV_CPP (= 0)) EV_THROW; /* returns true when successful */ 585EV_API_DECL int ev_default_loop (unsigned int flags EV_CPP (= 0)) EV_NOEXCEPT; /* returns true when successful */
584 586
585EV_API_DECL ev_tstamp ev_rt_now; 587EV_API_DECL ev_tstamp ev_rt_now;
586 588
587EV_INLINE ev_tstamp 589EV_INLINE ev_tstamp
588ev_now (void) EV_THROW 590ev_now (void) EV_NOEXCEPT
589{ 591{
590 return ev_rt_now; 592 return ev_rt_now;
591} 593}
592 594
593/* looks weird, but ev_is_default_loop (EV_A) still works if this exists */ 595/* looks weird, but ev_is_default_loop (EV_A) still works if this exists */
594EV_INLINE int 596EV_INLINE int
595ev_is_default_loop (void) EV_THROW 597ev_is_default_loop (void) EV_NOEXCEPT
596{ 598{
597 return 1; 599 return 1;
598} 600}
599 601
600#endif /* multiplicity */ 602#endif /* multiplicity */
604 606
605/* this needs to be called after fork, to duplicate the loop */ 607/* this needs to be called after fork, to duplicate the loop */
606/* when you want to re-use it in the child */ 608/* when you want to re-use it in the child */
607/* you can call it in either the parent or the child */ 609/* you can call it in either the parent or the child */
608/* you can actually call it at any time, anywhere :) */ 610/* you can actually call it at any time, anywhere :) */
609EV_API_DECL void ev_loop_fork (EV_P) EV_THROW; 611EV_API_DECL void ev_loop_fork (EV_P) EV_NOEXCEPT;
610 612
611EV_API_DECL unsigned int ev_backend (EV_P) EV_THROW; /* backend in use by loop */ 613EV_API_DECL unsigned int ev_backend (EV_P) EV_NOEXCEPT; /* backend in use by loop */
612 614
613EV_API_DECL void ev_now_update (EV_P) EV_THROW; /* update event loop time */ 615EV_API_DECL void ev_now_update (EV_P) EV_NOEXCEPT; /* update event loop time */
614 616
615#if EV_WALK_ENABLE 617#if EV_WALK_ENABLE
616/* walk (almost) all watchers in the loop of a given type, invoking the */ 618/* walk (almost) all watchers in the loop of a given type, invoking the */
617/* callback on every such watcher. The callback might stop the watcher, */ 619/* callback on every such watcher. The callback might stop the watcher, */
618/* but do nothing else with the loop */ 620/* but do nothing else with the loop */
619EV_API_DECL void ev_walk (EV_P_ int types, void (*cb)(EV_P_ int type, void *w)) EV_THROW; 621EV_API_DECL void ev_walk (EV_P_ int types, void (*cb)(EV_P_ int type, void *w)) EV_NOEXCEPT;
620#endif 622#endif
621 623
622#endif /* prototypes */ 624#endif /* prototypes */
623 625
624/* ev_run flags values */ 626/* ev_run flags values */
634 EVBREAK_ALL = 2 /* unloop all loops */ 636 EVBREAK_ALL = 2 /* unloop all loops */
635}; 637};
636 638
637#if EV_PROTOTYPES 639#if EV_PROTOTYPES
638EV_API_DECL int ev_run (EV_P_ int flags EV_CPP (= 0)); 640EV_API_DECL int ev_run (EV_P_ int flags EV_CPP (= 0));
639EV_API_DECL void ev_break (EV_P_ int how EV_CPP (= EVBREAK_ONE)) EV_THROW; /* break out of the loop */ 641EV_API_DECL void ev_break (EV_P_ int how EV_CPP (= EVBREAK_ONE)) EV_NOEXCEPT; /* break out of the loop */
640 642
641/* 643/*
642 * ref/unref can be used to add or remove a refcount on the mainloop. every watcher 644 * ref/unref can be used to add or remove a refcount on the mainloop. every watcher
643 * keeps one reference. if you have a long-running watcher you never unregister that 645 * keeps one reference. if you have a long-running watcher you never unregister that
644 * should not keep ev_loop from running, unref() after starting, and ref() before stopping. 646 * should not keep ev_loop from running, unref() after starting, and ref() before stopping.
645 */ 647 */
646EV_API_DECL void ev_ref (EV_P) EV_THROW; 648EV_API_DECL void ev_ref (EV_P) EV_NOEXCEPT;
647EV_API_DECL void ev_unref (EV_P) EV_THROW; 649EV_API_DECL void ev_unref (EV_P) EV_NOEXCEPT;
648 650
649/* 651/*
650 * convenience function, wait for a single event, without registering an event watcher 652 * convenience function, wait for a single event, without registering an event watcher
651 * if timeout is < 0, do wait indefinitely 653 * if timeout is < 0, do wait indefinitely
652 */ 654 */
653EV_API_DECL void ev_once (EV_P_ int fd, int events, ev_tstamp timeout, void (*cb)(int revents, void *arg), void *arg) EV_THROW; 655EV_API_DECL void ev_once (EV_P_ int fd, int events, ev_tstamp timeout, void (*cb)(int revents, void *arg), void *arg) EV_NOEXCEPT;
654 656
655# if EV_FEATURE_API 657# if EV_FEATURE_API
656EV_API_DECL unsigned int ev_iteration (EV_P) EV_THROW; /* number of loop iterations */ 658EV_API_DECL unsigned int ev_iteration (EV_P) EV_NOEXCEPT; /* number of loop iterations */
657EV_API_DECL unsigned int ev_depth (EV_P) EV_THROW; /* #ev_loop enters - #ev_loop leaves */ 659EV_API_DECL unsigned int ev_depth (EV_P) EV_NOEXCEPT; /* #ev_loop enters - #ev_loop leaves */
658EV_API_DECL void ev_verify (EV_P) EV_THROW; /* abort if loop data corrupted */ 660EV_API_DECL void ev_verify (EV_P) EV_NOEXCEPT; /* abort if loop data corrupted */
659 661
660EV_API_DECL void ev_set_io_collect_interval (EV_P_ ev_tstamp interval) EV_THROW; /* sleep at least this time, default 0 */ 662EV_API_DECL void ev_set_io_collect_interval (EV_P_ ev_tstamp interval) EV_NOEXCEPT; /* sleep at least this time, default 0 */
661EV_API_DECL void ev_set_timeout_collect_interval (EV_P_ ev_tstamp interval) EV_THROW; /* sleep at least this time, default 0 */ 663EV_API_DECL void ev_set_timeout_collect_interval (EV_P_ ev_tstamp interval) EV_NOEXCEPT; /* sleep at least this time, default 0 */
662 664
663/* advanced stuff for threading etc. support, see docs */ 665/* advanced stuff for threading etc. support, see docs */
664EV_API_DECL void ev_set_userdata (EV_P_ void *data) EV_THROW; 666EV_API_DECL void ev_set_userdata (EV_P_ void *data) EV_NOEXCEPT;
665EV_API_DECL void *ev_userdata (EV_P) EV_THROW; 667EV_API_DECL void *ev_userdata (EV_P) EV_NOEXCEPT;
666typedef void (*ev_loop_callback)(EV_P); 668typedef void (*ev_loop_callback)(EV_P);
667EV_API_DECL void ev_set_invoke_pending_cb (EV_P_ ev_loop_callback invoke_pending_cb) EV_THROW; 669EV_API_DECL void ev_set_invoke_pending_cb (EV_P_ ev_loop_callback invoke_pending_cb) EV_NOEXCEPT;
668EV_API_DECL void ev_set_loop_release_cb (EV_P_ ev_loop_callback EV_THROW release, ev_loop_callback EV_THROW acquire) EV_THROW; 670/* C++ doesn't allow the use of the ev_loop_callback typedef here, so we need to spell it out */
671EV_API_DECL void ev_set_loop_release_cb (EV_P_ void (*release)(EV_P) EV_NOEXCEPT, void (*acquire)(EV_P) EV_NOEXCEPT) EV_NOEXCEPT;
669 672
670EV_API_DECL unsigned int ev_pending_count (EV_P) EV_THROW; /* number of pending events, if any */ 673EV_API_DECL unsigned int ev_pending_count (EV_P) EV_NOEXCEPT; /* number of pending events, if any */
671EV_API_DECL void ev_invoke_pending (EV_P); /* invoke all pending watchers */ 674EV_API_DECL void ev_invoke_pending (EV_P); /* invoke all pending watchers */
672 675
673/* 676/*
674 * stop/start the timer handling. 677 * stop/start the timer handling.
675 */ 678 */
676EV_API_DECL void ev_suspend (EV_P) EV_THROW; 679EV_API_DECL void ev_suspend (EV_P) EV_NOEXCEPT;
677EV_API_DECL void ev_resume (EV_P) EV_THROW; 680EV_API_DECL void ev_resume (EV_P) EV_NOEXCEPT;
678#endif 681#endif
679 682
680#endif 683#endif
681 684
682/* these may evaluate ev multiple times, and the other arguments at most once */ 685/* these may evaluate ev multiple times, and the other arguments at most once */
717#define ev_async_init(ev,cb) do { ev_init ((ev), (cb)); ev_async_set ((ev)); } while (0) 720#define ev_async_init(ev,cb) do { ev_init ((ev), (cb)); ev_async_set ((ev)); } while (0)
718 721
719#define ev_is_pending(ev) (0 + ((ev_watcher *)(void *)(ev))->pending) /* ro, true when watcher is waiting for callback invocation */ 722#define ev_is_pending(ev) (0 + ((ev_watcher *)(void *)(ev))->pending) /* ro, true when watcher is waiting for callback invocation */
720#define ev_is_active(ev) (0 + ((ev_watcher *)(void *)(ev))->active) /* ro, true when the watcher has been started */ 723#define ev_is_active(ev) (0 + ((ev_watcher *)(void *)(ev))->active) /* ro, true when the watcher has been started */
721 724
722#define ev_cb(ev) (ev)->cb /* rw */ 725#define ev_cb_(ev) (ev)->cb /* rw */
726#define ev_cb(ev) (memmove (&ev_cb_ (ev), &((ev_watcher *)(ev))->cb, sizeof (ev_cb_ (ev))), (ev)->cb)
723 727
724#if EV_MINPRI == EV_MAXPRI 728#if EV_MINPRI == EV_MAXPRI
725# define ev_priority(ev) ((ev), EV_MINPRI) 729# define ev_priority(ev) ((ev), EV_MINPRI)
726# define ev_set_priority(ev,pri) ((ev), (pri)) 730# define ev_set_priority(ev,pri) ((ev), (pri))
727#else 731#else
730#endif 734#endif
731 735
732#define ev_periodic_at(ev) (+((ev_watcher_time *)(ev))->at) 736#define ev_periodic_at(ev) (+((ev_watcher_time *)(ev))->at)
733 737
734#ifndef ev_set_cb 738#ifndef ev_set_cb
735# define ev_set_cb(ev,cb_) ev_cb (ev) = (cb_) 739# define ev_set_cb(ev,cb_) (ev_cb_ (ev) = (cb_), memmove (&((ev_watcher *)(ev))->cb, &ev_cb_ (ev), sizeof (ev_cb_ (ev))))
736#endif 740#endif
737 741
738/* stopping (enabling, adding) a watcher does nothing if it is already running */ 742/* stopping (enabling, adding) a watcher does nothing if it is already running */
739/* stopping (disabling, deleting) a watcher does nothing unless it's already running */ 743/* stopping (disabling, deleting) a watcher does nothing unless it's already running */
740#if EV_PROTOTYPES 744#if EV_PROTOTYPES
741 745
742/* feeds an event into a watcher as if the event actually occurred */ 746/* feeds an event into a watcher as if the event actually occurred */
743/* accepts any ev_watcher type */ 747/* accepts any ev_watcher type */
744EV_API_DECL void ev_feed_event (EV_P_ void *w, int revents) EV_THROW; 748EV_API_DECL void ev_feed_event (EV_P_ void *w, int revents) EV_NOEXCEPT;
745EV_API_DECL void ev_feed_fd_event (EV_P_ int fd, int revents) EV_THROW; 749EV_API_DECL void ev_feed_fd_event (EV_P_ int fd, int revents) EV_NOEXCEPT;
746#if EV_SIGNAL_ENABLE 750#if EV_SIGNAL_ENABLE
747EV_API_DECL void ev_feed_signal (int signum) EV_THROW; 751EV_API_DECL void ev_feed_signal (int signum) EV_NOEXCEPT;
748EV_API_DECL void ev_feed_signal_event (EV_P_ int signum) EV_THROW; 752EV_API_DECL void ev_feed_signal_event (EV_P_ int signum) EV_NOEXCEPT;
749#endif 753#endif
750EV_API_DECL void ev_invoke (EV_P_ void *w, int revents); 754EV_API_DECL void ev_invoke (EV_P_ void *w, int revents);
751EV_API_DECL int ev_clear_pending (EV_P_ void *w) EV_THROW; 755EV_API_DECL int ev_clear_pending (EV_P_ void *w) EV_NOEXCEPT;
752 756
753EV_API_DECL void ev_io_start (EV_P_ ev_io *w) EV_THROW; 757EV_API_DECL void ev_io_start (EV_P_ ev_io *w) EV_NOEXCEPT;
754EV_API_DECL void ev_io_stop (EV_P_ ev_io *w) EV_THROW; 758EV_API_DECL void ev_io_stop (EV_P_ ev_io *w) EV_NOEXCEPT;
755 759
756EV_API_DECL void ev_timer_start (EV_P_ ev_timer *w) EV_THROW; 760EV_API_DECL void ev_timer_start (EV_P_ ev_timer *w) EV_NOEXCEPT;
757EV_API_DECL void ev_timer_stop (EV_P_ ev_timer *w) EV_THROW; 761EV_API_DECL void ev_timer_stop (EV_P_ ev_timer *w) EV_NOEXCEPT;
758/* stops if active and no repeat, restarts if active and repeating, starts if inactive and repeating */ 762/* stops if active and no repeat, restarts if active and repeating, starts if inactive and repeating */
759EV_API_DECL void ev_timer_again (EV_P_ ev_timer *w) EV_THROW; 763EV_API_DECL void ev_timer_again (EV_P_ ev_timer *w) EV_NOEXCEPT;
760/* return remaining time */ 764/* return remaining time */
761EV_API_DECL ev_tstamp ev_timer_remaining (EV_P_ ev_timer *w) EV_THROW; 765EV_API_DECL ev_tstamp ev_timer_remaining (EV_P_ ev_timer *w) EV_NOEXCEPT;
762 766
763#if EV_PERIODIC_ENABLE 767#if EV_PERIODIC_ENABLE
764EV_API_DECL void ev_periodic_start (EV_P_ ev_periodic *w) EV_THROW; 768EV_API_DECL void ev_periodic_start (EV_P_ ev_periodic *w) EV_NOEXCEPT;
765EV_API_DECL void ev_periodic_stop (EV_P_ ev_periodic *w) EV_THROW; 769EV_API_DECL void ev_periodic_stop (EV_P_ ev_periodic *w) EV_NOEXCEPT;
766EV_API_DECL void ev_periodic_again (EV_P_ ev_periodic *w) EV_THROW; 770EV_API_DECL void ev_periodic_again (EV_P_ ev_periodic *w) EV_NOEXCEPT;
767#endif 771#endif
768 772
769/* only supported in the default loop */ 773/* only supported in the default loop */
770#if EV_SIGNAL_ENABLE 774#if EV_SIGNAL_ENABLE
771EV_API_DECL void ev_signal_start (EV_P_ ev_signal *w) EV_THROW; 775EV_API_DECL void ev_signal_start (EV_P_ ev_signal *w) EV_NOEXCEPT;
772EV_API_DECL void ev_signal_stop (EV_P_ ev_signal *w) EV_THROW; 776EV_API_DECL void ev_signal_stop (EV_P_ ev_signal *w) EV_NOEXCEPT;
773#endif 777#endif
774 778
775/* only supported in the default loop */ 779/* only supported in the default loop */
776# if EV_CHILD_ENABLE 780# if EV_CHILD_ENABLE
777EV_API_DECL void ev_child_start (EV_P_ ev_child *w) EV_THROW; 781EV_API_DECL void ev_child_start (EV_P_ ev_child *w) EV_NOEXCEPT;
778EV_API_DECL void ev_child_stop (EV_P_ ev_child *w) EV_THROW; 782EV_API_DECL void ev_child_stop (EV_P_ ev_child *w) EV_NOEXCEPT;
779# endif 783# endif
780 784
781# if EV_STAT_ENABLE 785# if EV_STAT_ENABLE
782EV_API_DECL void ev_stat_start (EV_P_ ev_stat *w) EV_THROW; 786EV_API_DECL void ev_stat_start (EV_P_ ev_stat *w) EV_NOEXCEPT;
783EV_API_DECL void ev_stat_stop (EV_P_ ev_stat *w) EV_THROW; 787EV_API_DECL void ev_stat_stop (EV_P_ ev_stat *w) EV_NOEXCEPT;
784EV_API_DECL void ev_stat_stat (EV_P_ ev_stat *w) EV_THROW; 788EV_API_DECL void ev_stat_stat (EV_P_ ev_stat *w) EV_NOEXCEPT;
785# endif 789# endif
786 790
787# if EV_IDLE_ENABLE 791# if EV_IDLE_ENABLE
788EV_API_DECL void ev_idle_start (EV_P_ ev_idle *w) EV_THROW; 792EV_API_DECL void ev_idle_start (EV_P_ ev_idle *w) EV_NOEXCEPT;
789EV_API_DECL void ev_idle_stop (EV_P_ ev_idle *w) EV_THROW; 793EV_API_DECL void ev_idle_stop (EV_P_ ev_idle *w) EV_NOEXCEPT;
790# endif 794# endif
791 795
792#if EV_PREPARE_ENABLE 796#if EV_PREPARE_ENABLE
793EV_API_DECL void ev_prepare_start (EV_P_ ev_prepare *w) EV_THROW; 797EV_API_DECL void ev_prepare_start (EV_P_ ev_prepare *w) EV_NOEXCEPT;
794EV_API_DECL void ev_prepare_stop (EV_P_ ev_prepare *w) EV_THROW; 798EV_API_DECL void ev_prepare_stop (EV_P_ ev_prepare *w) EV_NOEXCEPT;
795#endif 799#endif
796 800
797#if EV_CHECK_ENABLE 801#if EV_CHECK_ENABLE
798EV_API_DECL void ev_check_start (EV_P_ ev_check *w) EV_THROW; 802EV_API_DECL void ev_check_start (EV_P_ ev_check *w) EV_NOEXCEPT;
799EV_API_DECL void ev_check_stop (EV_P_ ev_check *w) EV_THROW; 803EV_API_DECL void ev_check_stop (EV_P_ ev_check *w) EV_NOEXCEPT;
800#endif 804#endif
801 805
802# if EV_FORK_ENABLE 806# if EV_FORK_ENABLE
803EV_API_DECL void ev_fork_start (EV_P_ ev_fork *w) EV_THROW; 807EV_API_DECL void ev_fork_start (EV_P_ ev_fork *w) EV_NOEXCEPT;
804EV_API_DECL void ev_fork_stop (EV_P_ ev_fork *w) EV_THROW; 808EV_API_DECL void ev_fork_stop (EV_P_ ev_fork *w) EV_NOEXCEPT;
805# endif 809# endif
806 810
807# if EV_CLEANUP_ENABLE 811# if EV_CLEANUP_ENABLE
808EV_API_DECL void ev_cleanup_start (EV_P_ ev_cleanup *w) EV_THROW; 812EV_API_DECL void ev_cleanup_start (EV_P_ ev_cleanup *w) EV_NOEXCEPT;
809EV_API_DECL void ev_cleanup_stop (EV_P_ ev_cleanup *w) EV_THROW; 813EV_API_DECL void ev_cleanup_stop (EV_P_ ev_cleanup *w) EV_NOEXCEPT;
810# endif 814# endif
811 815
812# if EV_EMBED_ENABLE 816# if EV_EMBED_ENABLE
813/* only supported when loop to be embedded is in fact embeddable */ 817/* only supported when loop to be embedded is in fact embeddable */
814EV_API_DECL void ev_embed_start (EV_P_ ev_embed *w) EV_THROW; 818EV_API_DECL void ev_embed_start (EV_P_ ev_embed *w) EV_NOEXCEPT;
815EV_API_DECL void ev_embed_stop (EV_P_ ev_embed *w) EV_THROW; 819EV_API_DECL void ev_embed_stop (EV_P_ ev_embed *w) EV_NOEXCEPT;
816EV_API_DECL void ev_embed_sweep (EV_P_ ev_embed *w) EV_THROW; 820EV_API_DECL void ev_embed_sweep (EV_P_ ev_embed *w) EV_NOEXCEPT;
817# endif 821# endif
818 822
819# if EV_ASYNC_ENABLE 823# if EV_ASYNC_ENABLE
820EV_API_DECL void ev_async_start (EV_P_ ev_async *w) EV_THROW; 824EV_API_DECL void ev_async_start (EV_P_ ev_async *w) EV_NOEXCEPT;
821EV_API_DECL void ev_async_stop (EV_P_ ev_async *w) EV_THROW; 825EV_API_DECL void ev_async_stop (EV_P_ ev_async *w) EV_NOEXCEPT;
822EV_API_DECL void ev_async_send (EV_P_ ev_async *w) EV_THROW; 826EV_API_DECL void ev_async_send (EV_P_ ev_async *w) EV_NOEXCEPT;
823# endif 827# endif
824 828
825#if EV_COMPAT3 829#if EV_COMPAT3
826 #define EVLOOP_NONBLOCK EVRUN_NOWAIT 830 #define EVLOOP_NONBLOCK EVRUN_NOWAIT
827 #define EVLOOP_ONESHOT EVRUN_ONCE 831 #define EVLOOP_ONESHOT EVRUN_ONCE

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines