test_mem.c
上传用户:gzpyjq
上传日期:2013-01-31
资源大小:1852k
文件大小:0k
源码类别:

手机WAP编程

开发平台:

WINDOWS

  1. /*
  2.  * test_mem.c - test memory allocation functions.
  3.  *
  4.  * Lars Wirzenius
  5.  */
  6. #include "gwlib/gwlib.h"
  7. int main(void) {
  8. void *p;
  9. long i;
  10. gwlib_init();
  11. p = gw_malloc(100);
  12. gw_free(p);
  13. gw_check_leaks();
  14. p = gw_malloc(100);
  15. gw_check_leaks();
  16. gw_free(p);
  17. gw_check_leaks();
  18. for (i = 0; i < 1000; ++i) {
  19. p = gw_malloc(100);
  20. debug("", 0, "i = %ld", i);
  21. }
  22. gwlib_shutdown();
  23. return 0;
  24. }