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

Comparing libev/ev.h (file contents):
Revision 1.172 by root, Fri Dec 27 06:01:22 2013 UTC vs.
Revision 1.184 by root, Sun Dec 20 01:35:55 2015 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,2008,2009,2010,2011,2012,2015 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_THROW noexcept
47# else
48# define EV_THROW throw ()
49# endif
45#else 50#else
46# define EV_CPP(x) 51# define EV_CPP(x)
52# define EV_THROW
47#endif 53#endif
48
49#define EV_THROW EV_CPP(throw())
50 54
51EV_CPP(extern "C" {) 55EV_CPP(extern "C" {)
52 56
53/*****************************************************************************/ 57/*****************************************************************************/
54 58
145#endif 149#endif
146 150
147/*****************************************************************************/ 151/*****************************************************************************/
148 152
149typedef double ev_tstamp; 153typedef double ev_tstamp;
154
155#include <string.h> /* for memmove */
150 156
151#ifndef EV_ATOMIC_T 157#ifndef EV_ATOMIC_T
152# include <signal.h> 158# include <signal.h>
153# define EV_ATOMIC_T sig_atomic_t volatile 159# define EV_ATOMIC_T sig_atomic_t volatile
154#endif 160#endif
203#endif 209#endif
204 210
205/*****************************************************************************/ 211/*****************************************************************************/
206 212
207#define EV_VERSION_MAJOR 4 213#define EV_VERSION_MAJOR 4
208#define EV_VERSION_MINOR 15 214#define EV_VERSION_MINOR 22
209 215
210/* eventmask, revents, events... */ 216/* eventmask, revents, events... */
211enum { 217enum {
212 EV_UNDEF = (int)0xFFFFFFFF, /* guaranteed to be invalid */ 218 EV_UNDEF = (int)0xFFFFFFFF, /* guaranteed to be invalid */
213 EV_NONE = 0x00, /* no events */ 219 EV_NONE = 0x00, /* no events */
658/* advanced stuff for threading etc. support, see docs */ 664/* advanced stuff for threading etc. support, see docs */
659EV_API_DECL void ev_set_userdata (EV_P_ void *data) EV_THROW; 665EV_API_DECL void ev_set_userdata (EV_P_ void *data) EV_THROW;
660EV_API_DECL void *ev_userdata (EV_P) EV_THROW; 666EV_API_DECL void *ev_userdata (EV_P) EV_THROW;
661typedef void (*ev_loop_callback)(EV_P); 667typedef void (*ev_loop_callback)(EV_P);
662EV_API_DECL void ev_set_invoke_pending_cb (EV_P_ ev_loop_callback invoke_pending_cb) EV_THROW; 668EV_API_DECL void ev_set_invoke_pending_cb (EV_P_ ev_loop_callback invoke_pending_cb) EV_THROW;
663typedef void (*ev_loop_callback_nothrow)(EV_P) EV_THROW; 669/* C++ doesn't allow the use of the ev_loop_callback typedef here, so we need to spell it out */
664EV_API_DECL void ev_set_loop_release_cb (EV_P_ ev_loop_callback_nothrow release, ev_loop_callback_nothrow acquire) EV_THROW; 670EV_API_DECL void ev_set_loop_release_cb (EV_P_ void (*release)(EV_P) EV_THROW, void (*acquire)(EV_P) EV_THROW) EV_THROW;
665 671
666EV_API_DECL unsigned int ev_pending_count (EV_P) EV_THROW; /* number of pending events, if any */ 672EV_API_DECL unsigned int ev_pending_count (EV_P) EV_THROW; /* number of pending events, if any */
667EV_API_DECL void ev_invoke_pending (EV_P); /* invoke all pending watchers */ 673EV_API_DECL void ev_invoke_pending (EV_P); /* invoke all pending watchers */
668 674
669/* 675/*
713#define ev_async_init(ev,cb) do { ev_init ((ev), (cb)); ev_async_set ((ev)); } while (0) 719#define ev_async_init(ev,cb) do { ev_init ((ev), (cb)); ev_async_set ((ev)); } while (0)
714 720
715#define ev_is_pending(ev) (0 + ((ev_watcher *)(void *)(ev))->pending) /* ro, true when watcher is waiting for callback invocation */ 721#define ev_is_pending(ev) (0 + ((ev_watcher *)(void *)(ev))->pending) /* ro, true when watcher is waiting for callback invocation */
716#define ev_is_active(ev) (0 + ((ev_watcher *)(void *)(ev))->active) /* ro, true when the watcher has been started */ 722#define ev_is_active(ev) (0 + ((ev_watcher *)(void *)(ev))->active) /* ro, true when the watcher has been started */
717 723
718#define ev_cb(ev) (ev)->cb /* rw */ 724#define ev_cb_(ev) (ev)->cb /* rw */
725#define ev_cb(ev) (memmove (&ev_cb_ (ev), &((ev_watcher *)(ev))->cb, sizeof (ev_cb_ (ev))), (ev)->cb)
719 726
720#if EV_MINPRI == EV_MAXPRI 727#if EV_MINPRI == EV_MAXPRI
721# define ev_priority(ev) ((ev), EV_MINPRI) 728# define ev_priority(ev) ((ev), EV_MINPRI)
722# define ev_set_priority(ev,pri) ((ev), (pri)) 729# define ev_set_priority(ev,pri) ((ev), (pri))
723#else 730#else
726#endif 733#endif
727 734
728#define ev_periodic_at(ev) (+((ev_watcher_time *)(ev))->at) 735#define ev_periodic_at(ev) (+((ev_watcher_time *)(ev))->at)
729 736
730#ifndef ev_set_cb 737#ifndef ev_set_cb
731# define ev_set_cb(ev,cb_) ev_cb (ev) = (cb_) 738# define ev_set_cb(ev,cb_) (ev_cb_ (ev) = (cb_), memmove (&((ev_watcher *)(ev))->cb, &ev_cb_ (ev), sizeof (ev_cb_ (ev))))
732#endif 739#endif
733 740
734/* stopping (enabling, adding) a watcher does nothing if it is already running */ 741/* stopping (enabling, adding) a watcher does nothing if it is already running */
735/* stopping (disabling, deleting) a watcher does nothing unless it's already running */ 742/* stopping (disabling, deleting) a watcher does nothing unless it's already running */
736#if EV_PROTOTYPES 743#if EV_PROTOTYPES

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines