From e2e72750afec17ea4b1f5b77d5569e8db7ae8e0e Mon Sep 17 00:00:00 2001 From: Andreas Gustafsson Date: Wed, 26 Apr 2000 16:58:17 +0000 Subject: [PATCH] added ISC_EVENTATTR_CANCELED --- lib/isc/include/isc/event.h | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/lib/isc/include/isc/event.h b/lib/isc/include/isc/event.h index dc1891643b..885ebefb0b 100644 --- a/lib/isc/include/isc/event.h +++ b/lib/isc/include/isc/event.h @@ -59,6 +59,15 @@ typedef void (*isc_eventdestructor_t)(isc_event_t *); */ #define ISC_EVENTATTR_NOPURGE 0x00000001 +/* + * The ISC_EVENTATTR_CANCELED attribute is intended to indicate + * that an event is delivered as a result of a canceled operation + * rather than successful completion, by mutual agreement + * between the sender and receiver. It is not set or used by + * the task system. + */ +#define ISC_EVENTATTR_CANCELED 0x00000002 + #define ISC_EVENT_INIT(event, sz, at, ta, ty, ac, ar, sn, df, da) \ do { \ (event)->ev_size = (sz); \