]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
define the wrapper function for mem_isovermem().
authorTatuya JINMEI 神明達哉 <jinmei@isc.org>
Thu, 12 Aug 2010 21:31:33 +0000 (21:31 +0000)
committerTatuya JINMEI 神明達哉 <jinmei@isc.org>
Thu, 12 Aug 2010 21:31:33 +0000 (21:31 +0000)
(a regression in rt21818)

lib/isc/mem_api.c

index fdff49a8ba93ae554a927f99cbce80a657d4be09..74e52f7936dda72808caa466bd37980bbb2926d1 100644 (file)
@@ -14,7 +14,7 @@
  * PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: mem_api.c,v 1.5.104.2 2010/04/09 23:49:48 tbox Exp $ */
+/* $Id: mem_api.c,v 1.5.104.3 2010/08/12 21:31:33 jinmei Exp $ */
 
 #include <config.h>
 
@@ -199,6 +199,13 @@ isc_mem_inuse(isc_mem_t *mctx) {
        return (mctx->methods->inuse(mctx));
 }
 
+isc_boolean_t
+isc_mem_isovermem(isc_mem_t *mctx) {
+       REQUIRE(ISCAPI_MCTX_VALID(mctx));
+
+       return (mctx->methods->isovermem(mctx));
+}
+
 void
 isc_mem_setname(isc_mem_t *mctx, const char *name, void *tag) {
        REQUIRE(ISCAPI_MCTX_VALID(mctx));