]> granicus.if.org Git - libevent/commitdiff
Remove signal_assign() and signal_new() macros.
authorNick Mathewson <nickm@torproject.org>
Wed, 3 Mar 2010 17:15:15 +0000 (12:15 -0500)
committerNick Mathewson <nickm@torproject.org>
Wed, 3 Mar 2010 17:15:15 +0000 (12:15 -0500)
These were introduced and deprecated in the same version (2.0.1-alpha),
presumably in two-stage process.  Everybody sane should be using
evsignal_assign() and evsignal_new() instead.

include/event2/event_compat.h

index 9e037f861eb6c5f550cd8375b974012d3da42843..0abbc0e1567b76e42e9e8dcb44823f15a43296b7 100644 (file)
@@ -295,18 +295,6 @@ void event_set(struct event *, evutil_socket_t, short, void (*)(evutil_socket_t,
 */
 #define signal_set(ev, x, cb, arg)                             \
        event_set((ev), (x), EV_SIGNAL|EV_PERSIST, (cb), (arg))
-/**
-   @deprecated This macro is deprecated because its naming is inconsistent.
-    The recommend macro is evsignal_assign().
-*/
-#define signal_assign(ev, b, x, cb, arg)                       \
-       event_assign((ev), (b), (x), EV_SIGNAL|EV_PERSIST, (cb), (arg))
-/**
-   @deprecated This macro is deprecated because its naming is inconsistent.
-    The recommend macro is evsignal_new().
-*/
-#define signal_new(b, x, cb, arg) \
-       event_new((b), (x), EV_SIGNAL|EV_PERSIST, (cb), (arg))
 /**
    @deprecated This macro is deprecated because its naming is inconsistent.
     The recommend macro is evsignal_del().