--- libelwix/src/mem.c 2014/01/29 16:42:57 1.4 +++ libelwix/src/mem.c 2015/06/25 00:36:48 1.4.18.1 @@ -3,7 +3,7 @@ * by Michael Pounov * * $Author: misho $ -* $Id: mem.c,v 1.4 2014/01/29 16:42:57 misho Exp $ +* $Id: mem.c,v 1.4.18.1 2015/06/25 00:36:48 misho Exp $ * ************************************************************************** The ELWIX and AITNET software is distributed under the following @@ -12,7 +12,7 @@ terms: All of the documentation and software included in the ELWIX and AITNET Releases is copyrighted by ELWIX - Sofia/Bulgaria -Copyright 2004 - 2014 +Copyright 2004 - 2015 by Michael Pounov . All rights reserved. Redistribution and use in source and binary forms, with or without @@ -733,4 +733,16 @@ char * mpool_xstrdup(const char *str) { return mpool_strdup(elwix_mpool, str, elwix_Prog); +} + +/* + * mpool_xstatistics() - elwix memory pool statistics wrapper + * + * @cb = Export statistics to callback + * return: none + */ +void +mpool_xstatistics(mpool_stat_cb cb) +{ + mpool_statistics(elwix_mpool, cb); }