Diff for /libelwix/inc/elwix/ampool.h between versions 1.3.20.2 and 1.3.20.3

version 1.3.20.2, 2015/06/25 01:19:09 version 1.3.20.3, 2015/06/25 16:49:33
Line 79  typedef struct _tagMPool { Line 79  typedef struct _tagMPool {
         } pool_bytes;          } pool_bytes;
         struct {          struct {
                 unsigned long max;                  unsigned long max;
                   unsigned long real;
                 unsigned long curr;                  unsigned long curr;
         } pool_quota;          } pool_quota;
   
Line 198  unsigned long mpool_setquota(mpool_t * __restrict mp,  Line 199  unsigned long mpool_setquota(mpool_t * __restrict mp, 
  * mpool_getquota() - Get memory quota   * mpool_getquota() - Get memory quota
  *   *
  * @mp = Memory pool   * @mp = Memory pool
 * @currmem = Return current memory * @currmem = Return current memory usage
  * @realmem = Return current real memory usage
  * @maxmem = Return max quota size   * @maxmem = Return max quota size
  * return: none   * return: none
  */   */
 void mpool_getquota(mpool_t * __restrict mp, unsigned long *currmem,   void mpool_getquota(mpool_t * __restrict mp, unsigned long *currmem, 
                unsigned long *maxmem);                unsigned long *realmem, unsigned long *maxmem);
 /*  /*
  * mpool_statistics() - Dump statistics from memory pool buckets   * mpool_statistics() - Dump statistics from memory pool buckets
  *   *

Removed from v.1.3.20.2  
changed lines
  Added in v.1.3.20.3


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>