typedef unsigned int fr_heap_index_t;
typedef unsigned int fr_heap_iter_t;
+/** How many talloc headers need to be pre-allocated for a heap
+ */
+#define FR_HEAP_TALLOC_HEADERS 2
+
/** Comparator to order heap elements
*
* Return negative numbers to put 'a' at the top of the heap.
TEST_MSG_ALWAYS("insert: %"PRIu64" μs\n", (end_insert - start_insert) / 1000);
TEST_MSG_ALWAYS("pop-first: %"PRIu64" μs\n", (end_pop_first - start_pop) / 1000);
TEST_MSG_ALWAYS("pop: %"PRIu64" μs\n", (end_pop - start_pop) / 1000);
+
+ talloc_free(heap);
}
/*