malloc.c 981 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. #include <unistd.h>
  2. #include <stdlib.h>
  3. #include <stdio.h>
  4. #define N_PTRS 1000
  5. #define N_ALLOCS 10000
  6. #define MAX_SIZE 0x10000
  7. #define random_size() (random()%MAX_SIZE)
  8. #define random_ptr() (random()%N_PTRS)
  9. void test1(void);
  10. void test2(void);
  11. int main(int argc,char *argv[])
  12. {
  13. test1();
  14. test2();
  15. }
  16. void test1(void)
  17. {
  18. void **ptrs;
  19. int i,j;
  20. int size;
  21. srandom(0x19730929);
  22. ptrs = malloc(N_PTRS*sizeof(void *));
  23. for(i=0;i<N_PTRS;i++){
  24. ptrs[i]=malloc(random_size());
  25. }
  26. for(i=0;i<N_ALLOCS;i++){
  27. j=random_ptr();
  28. free(ptrs[j]);
  29. size=random_size();
  30. ptrs[j]=malloc(size);
  31. if(!ptrs[j]){
  32. printf("malloc failed! %d\n",i);
  33. }
  34. memset(ptrs[j],0,size);
  35. }
  36. for(i=0;i<N_PTRS;i++){
  37. free(ptrs[i]);
  38. }
  39. }
  40. void test2(void)
  41. {
  42. void *ptr = NULL;
  43. ptr = realloc(ptr,100);
  44. if(!ptr){
  45. printf("couldn't realloc() a NULL pointer\n");
  46. }else{
  47. free(ptr);
  48. }
  49. ptr = malloc(100);
  50. ptr = realloc(ptr, 0);
  51. if(ptr){
  52. printf("realloc(,0) failed\n");
  53. free(ptr);
  54. }
  55. }