/* Copyright (C) 1999, 2000, 2001, 2002, Massachusetts Institute of Technology. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #include #include #include #include "../src/config.h" #include #define NUM_POINTERS 1000 #define MAX_SIZE 65536 #define NUM_MALLOCS 3000000 int main(void) { char *pointers[NUM_POINTERS]; int i, iter; clock_t start_time; double elapsed_time; #ifdef DEBUG_MALLOC printf("Using debug_malloc and debug_free routines.\n"); #else fprintf(stderr, "***** NOTE: malloctest is designed to be run when the package\n" " is configured with --enable-debug, to test the\n" " debugging malloc/free routines.\n"); #endif srand(time(NULL)); for (i = 0; i < NUM_POINTERS; ++i) pointers[i] = NULL; printf("Doing %d malloc/free calls...\n", NUM_MALLOCS); start_time = clock(); for (iter = 0; iter < NUM_MALLOCS; ++iter) { i = rand() % NUM_POINTERS; if (pointers[i]) free(pointers[i]); CHK_MALLOC(pointers[i], char, rand() % MAX_SIZE + 1); if ((iter + 1) % (NUM_MALLOCS / 20) == 0) printf("...completed %d...\n", iter + 1); } elapsed_time = (clock() - start_time) * 1.0 / CLOCKS_PER_SEC; printf("Done.\n"); printf("Total time = %g seconds, %g us per iteration\n", elapsed_time, elapsed_time * 1e6 / NUM_MALLOCS); for (i = 0; i < NUM_POINTERS; ++i) if (pointers[i]) free(pointers[i]); #ifdef DEBUG_MALLOC debug_check_memory_leaks(); #endif printf("Okay.\n"); return EXIT_SUCCESS; }