1
1

Refs trac:1805: temporarily disable some assert()s in event_base_free().

This commit was SVN r20609.

The following Trac tickets were found above:
  Ticket 1805 --> https://svn.open-mpi.org/trac/ompi/ticket/1805
Этот коммит содержится в:
Jeff Squyres 2009-02-20 15:03:36 +00:00
родитель 1e5aa40e3f
Коммит 1a7556d2c9

Просмотреть файл

@ -533,10 +533,18 @@ event_base_free(struct event_base *base)
if (base->evsel->dealloc != NULL)
base->evsel->dealloc(base, base->evbase);
#if 0
/* Per ticket #1805
(https://svn.open-mpi.org/trac/ompi/ticket/1805), these
asserts are temporarily removed until we can have the rest
of the code base absolutely clean up all pending libevents,
we're #if 0'ing out these asserts so that we stop dumping
core. :-\ */
for (i = 0; i < base->nactivequeues; ++i)
assert(TAILQ_EMPTY(base->activequeues[i]));
assert(min_heap_empty(&base->timeheap));
#endif
min_heap_dtor(&base->timeheap);
for (i = 0; i < base->nactivequeues; ++i)