X-Git-Url: https://git.llucax.com/software/eventxx.git/blobdiff_plain/790f633d2d0eda52667c7767b232d9b231dc4f0b..868ab76df09c012534e12b21543affdb14ffea4e:/eventxx diff --git a/eventxx b/eventxx index 7dd8c48..2ee228d 100644 --- a/eventxx +++ b/eventxx @@ -142,8 +142,8 @@ * patch your libevent (for example, using this patch * written by Mark D. Anderson, and who knows why it's not still applied). If - * you do so, you can compile your programs with @c -DEVENT_BASE_FREE_FIX so - * @c event_base_free() gets called in the eventxx::dispatcher @link + * you do so, you can compile your programs with @c -DEVENTXX_EVENT_BASE_FREE_FIX + * so @c event_base_free() gets called in the eventxx::dispatcher @link * eventxx::dispatcher::~dispatcher() destructor @endlink. * * That said, I think it's still pretty usable anyways. If something is broken @@ -791,15 +791,17 @@ struct dispatcher internal::event_base_priority_init(_event_base, npriorities); } -#ifdef EVENT_BASE_FREE_FIX +#ifdef EVENTXX_BASE_FREE_FIX /// Free dispatcher resources, see @ref Status section for details. ~dispatcher() throw() { event_base_free(_event_base); } #else +#ifndef EVENTXX_NO_WARNING #warning "The dispatcher class *will* leak memory because of a libevent bug, " \ "see http://www.mail-archive.com/libevent-users@monkey.org/msg00110.html " \ "for more info an a patch. If you already have this patch, please " \ - "-DEVENT_BASE_FREE_FIX to your compiler to make this message disappear " \ + "-DEVENTXX_EVENT_BASE_FREE_FIX to your compiler to make this message disappear " \ "and really free the dispatcher memory using event_base_free()." +#endif #endif /**