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

Comparing libev/ev.h (file contents):
Revision 1.180 by root, Sun Nov 9 09:00:16 2014 UTC vs.
Revision 1.183 by root, Sat Jun 20 11:05:27 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 *
150 150
151/*****************************************************************************/ 151/*****************************************************************************/
152 152
153typedef double ev_tstamp; 153typedef double ev_tstamp;
154 154
155#include <string.h> /* for memmove */
156
155#ifndef EV_ATOMIC_T 157#ifndef EV_ATOMIC_T
156# include <signal.h> 158# include <signal.h>
157# define EV_ATOMIC_T sig_atomic_t volatile 159# define EV_ATOMIC_T sig_atomic_t volatile
158#endif 160#endif
159 161
207#endif 209#endif
208 210
209/*****************************************************************************/ 211/*****************************************************************************/
210 212
211#define EV_VERSION_MAJOR 4 213#define EV_VERSION_MAJOR 4
212#define EV_VERSION_MINOR 19 214#define EV_VERSION_MINOR 20
213 215
214/* eventmask, revents, events... */ 216/* eventmask, revents, events... */
215enum { 217enum {
216 EV_UNDEF = (int)0xFFFFFFFF, /* guaranteed to be invalid */ 218 EV_UNDEF = (int)0xFFFFFFFF, /* guaranteed to be invalid */
217 EV_NONE = 0x00, /* no events */ 219 EV_NONE = 0x00, /* no events */
662/* advanced stuff for threading etc. support, see docs */ 664/* advanced stuff for threading etc. support, see docs */
663EV_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;
664EV_API_DECL void *ev_userdata (EV_P) EV_THROW; 666EV_API_DECL void *ev_userdata (EV_P) EV_THROW;
665typedef void (*ev_loop_callback)(EV_P); 667typedef void (*ev_loop_callback)(EV_P);
666EV_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;
667/* C++ doesn't allow the use of the ev_loop_callback typedef here, so we need to spell it out*/ 669/* C++ doesn't allow the use of the ev_loop_callback typedef here, so we need to spell it out */
668EV_API_DECL void ev_set_loop_release_cb (EV_P_ void (*release)(EV_P) EV_THROW, void (*acquire)(EV_P) EV_THROW) 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;
669 671
670EV_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 */
671EV_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 */
672 674
717#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)
718 720
719#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 */
720#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 */
721 723
722#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)
723 726
724#if EV_MINPRI == EV_MAXPRI 727#if EV_MINPRI == EV_MAXPRI
725# define ev_priority(ev) ((ev), EV_MINPRI) 728# define ev_priority(ev) ((ev), EV_MINPRI)
726# define ev_set_priority(ev,pri) ((ev), (pri)) 729# define ev_set_priority(ev,pri) ((ev), (pri))
727#else 730#else
730#endif 733#endif
731 734
732#define ev_periodic_at(ev) (+((ev_watcher_time *)(ev))->at) 735#define ev_periodic_at(ev) (+((ev_watcher_time *)(ev))->at)
733 736
734#ifndef ev_set_cb 737#ifndef ev_set_cb
735# 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))))
736#endif 739#endif
737 740
738/* 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 */
739/* 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 */
740#if EV_PROTOTYPES 743#if EV_PROTOTYPES

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines