summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2010-03-03 12:15:15 -0500
committerNick Mathewson <nickm@torproject.org>2010-03-03 12:15:15 -0500
commit2fac0f70a388d3a35a2d7883eeb673c6fbbe16e1 (patch)
treeae5cd0a0a4f5cd016323ad58113c86834b8ba8dd /include
parent1273d2f519a386c30149143a85e5175e100cb980 (diff)
downloadlibevent-2fac0f70a388d3a35a2d7883eeb673c6fbbe16e1.tar.gz
Remove signal_assign() and signal_new() macros.
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.
Diffstat (limited to 'include')
-rw-r--r--include/event2/event_compat.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/include/event2/event_compat.h b/include/event2/event_compat.h
index 9e037f86..0abbc0e1 100644
--- a/include/event2/event_compat.h
+++ b/include/event2/event_compat.h
@@ -297,18 +297,6 @@ void event_set(struct event *, evutil_socket_t, short, void (*)(evutil_socket_t,
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().
*/
#define signal_del(ev) event_del(ev)