Diff for /libaitsess/contrib/Attic/test_mem.c between versions 1.1.2.6 and 1.1.2.12

version 1.1.2.6, 2012/02/28 09:36:36 version 1.1.2.12, 2012/02/28 12:45:51
Line 21  main(int argc, char **argv) Line 21  main(int argc, char **argv)
         mpool_t *mp;          mpool_t *mp;
         void *addr;          void *addr;
         int i;          int i;
           u_long curr;
   
         for (i = 0; i < 3; i++) {          for (i = 0; i < 3; i++) {
                 addr = malloc(4000);                  addr = malloc(4000);
Line 33  main(int argc, char **argv) Line 34  main(int argc, char **argv)
                 printf("Error:: #%d - %s\n", sess_GetErrno(), sess_GetError());                  printf("Error:: #%d - %s\n", sess_GetErrno(), sess_GetError());
                 return 1;                  return 1;
         }          }
           /*
           mpool_getquota(mp, &curr, NULL);
           printf("___current=%lu\n", curr);
           */
   
         for (i = 0; i < 3; i++) {          for (i = 0; i < 3; i++) {
                 addr = mpool_malloc(mp, 4000, "mdaaa 4000");                  addr = mpool_malloc(mp, 4000, "mdaaa 4000");
Line 48  main(int argc, char **argv) Line 53  main(int argc, char **argv)
 //              mpool_free(mp, addr, 0);  //              mpool_free(mp, addr, 0);
         }          }
   
        printf("1)\n");        mpool_getquota(mp, &curr, NULL);
         printf("___current=%lu\n", curr);
 
         printf("0) calls.act=%lu calls.inact=%lu calls.free=%lu; bytes.act=%lu bytes.inact=%lu bytes.free=%lu;\n", 
                         mp->pool_calls.alloc, mp->pool_calls.cache, mp->pool_calls.free, 
                         mp->pool_bytes.alloc, mp->pool_bytes.cache, mp->pool_bytes.free);
         mpool_statistics(mp, show);          mpool_statistics(mp, show);
   
        mpool_free(mp, addr, 0);        addr = mpool_realloc(mp, addr, 4010, "|||||||||||||");
         if (!addr)
                 printf("Error:: #%d - %s\n", sess_GetErrno(), sess_GetError());
         mpool_getquota(mp, &curr, NULL);
         printf("addr=%p_current=%lu\n", addr, curr);
   
        printf("2)\n");        printf("1) calls.act=%lu calls.inact=%lu calls.free=%lu; bytes.act=%lu bytes.inact=%lu bytes.free=%lu;\n", 
                         mp->pool_calls.alloc, mp->pool_calls.cache, mp->pool_calls.free, 
                         mp->pool_bytes.alloc, mp->pool_bytes.cache, mp->pool_bytes.free);
         mpool_statistics(mp, show);          mpool_statistics(mp, show);
   
   
           if (addr)
                   mpool_free(mp, addr, 0);
   
           printf("2) calls.act=%lu calls.inact=%lu calls.free=%lu; bytes.act=%lu bytes.inact=%lu bytes.free=%lu;\n", 
                           mp->pool_calls.alloc, mp->pool_calls.cache, mp->pool_calls.free, 
                           mp->pool_bytes.alloc, mp->pool_bytes.cache, mp->pool_bytes.free);
           mpool_statistics(mp, show);
   
         mpool_purge(mp, 0);          mpool_purge(mp, 0);
   
        printf("3)\n");        mpool_getquota(mp, &curr, NULL);
         printf("___current=%lu\n", curr);
 
         printf("3) calls.act=%lu calls.inact=%lu calls.free=%lu; bytes.act=%lu bytes.inact=%lu bytes.free=%lu;\n", 
                         mp->pool_calls.alloc, mp->pool_calls.cache, mp->pool_calls.free, 
                         mp->pool_bytes.alloc, mp->pool_bytes.cache, mp->pool_bytes.free);
         mpool_statistics(mp, show);          mpool_statistics(mp, show);
   
         addr = mpool_malloc(mp, 4000, "mdaaa 4000");          addr = mpool_malloc(mp, 4000, "mdaaa 4000");
Line 70  main(int argc, char **argv) Line 100  main(int argc, char **argv)
         printf("addr=%p chkaddr=%d addr_size=%d\n", addr, mpool_chkaddr(addr), mpool_getsizebyaddr(addr));          printf("addr=%p chkaddr=%d addr_size=%d\n", addr, mpool_chkaddr(addr), mpool_getsizebyaddr(addr));
         mpool_free(mp, addr, 0);          mpool_free(mp, addr, 0);
   
        printf("Done.\n");        printf("4) calls.act=%lu calls.inact=%lu calls.free=%lu; bytes.act=%lu bytes.inact=%lu bytes.free=%lu;\n", 
                         mp->pool_calls.alloc, mp->pool_calls.cache, mp->pool_calls.free, 
                         mp->pool_bytes.alloc, mp->pool_bytes.cache, mp->pool_bytes.free);
         mpool_statistics(mp, show);          mpool_statistics(mp, show);
         mpool_destroy(&mp);          mpool_destroy(&mp);
         return 0;          return 0;

Removed from v.1.1.2.6  
changed lines
  Added in v.1.1.2.12


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