1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158
|
/*
* Local defines for the memory table.
*
* Copyright 2000 by Gray Watson
*
* This file is part of the dmalloc package.
*
* Permission to use, copy, modify, and distribute this software for
* any purpose and without fee is hereby granted, provided that the
* above copyright notice and this permission notice appear in all
* copies, and that the name of Gray Watson not be used in advertising
* or publicity pertaining to distribution of the document or software
* without specific, written prior permission.
*
* Gray Watson makes no representations about the suitability of the
* software described herein for any purpose. It is provided "as is"
* without express or implied warranty.
*
* The author may be contacted via http://dmalloc.com/
*
* $Id: dmalloc_tab.h,v 1.5 2003/06/08 05:53:45 gray Exp $
*/
#ifndef __DMALLOC_TAB_H__
#define __DMALLOC_TAB_H__
/* entry in a memory table */
typedef struct mem_table_st {
const char *mt_file; /* filename of alloc or ra */
unsigned int mt_line; /* line number of alloc */
unsigned long mt_total_size; /* size bytes alloced */
unsigned long mt_total_c; /* total pointers allocated */
unsigned long mt_in_use_size; /* size currently alloced */
unsigned long mt_in_use_c; /* pointers currently in use */
/* we use this so we can easily un-sort the list */
struct mem_table_st *mt_entry_pos_p; /* pos of entry in table */
} mem_table_t;
/*<<<<<<<<<< The below prototypes are auto-generated by fillproto */
/*
* void _dmalloc_table_clear
*
* DESCRIPTION:
*
* Clear out the allocation information in our table. We are going to
* be loading it with other info.
*
* RETURNS:
*
* None.
*
* ARGUMENTS:
*
* mem_table -> Memory table we are working on.
*
* entry_n -> Number of entries in the memory table.
*
* entry_cp <-> Pointer to an integer which records how many entries
* are in the table.
*/
extern
void _dmalloc_table_clear(mem_table_t *mem_table, const int entry_n,
int *entry_cp);
/*
* void _dmalloc_table_insert
*
* DESCRIPTION:
*
* Insert a pointer to the table.
*
* RETURNS:
*
* None.
*
* ARGUMENTS:
*
* mem_table -> Memory table we are working on.
*
* entry_n -> Number of entries in the memory table.
*
* file -> File name or return address of the allocation.
*
* line -> Line number of the allocation.
*
* size -> Size in bytes of the allocation.
*
* entry_cp <-> Pointer to an integer which records how many entries
* are in the table.
*/
extern
void _dmalloc_table_insert(mem_table_t *mem_table, const int entry_n,
const char *file, const unsigned int line,
const unsigned long size, int *entry_cp);
/*
* void _dmalloc_table_delete
*
* DESCRIPTION:
*
* Remove a pointer from the table.
*
* RETURNS:
*
* None.
*
* ARGUMENTS:
*
* mem_table -> Memory table we are working on.
*
* entry_n -> Number of entries in the memory table.
*
* old_file -> File name or return address of the allocation to
* delete.
*
* old_line -> Line number of the allocation to delete.
*
* size -> Size in bytes of the allocation.
*/
extern
void _dmalloc_table_delete(mem_table_t *mem_table, const int entry_n,
const char *old_file,
const unsigned int old_line,
const DMALLOC_SIZE size);
/*
* void _dmalloc_table_log_info
*
* DESCRIPTION:
*
* Log information from the memory table to the log file.
*
* RETURNS:
*
* None.
*
* ARGUMENTS:
*
* mem_table -> Memory table we are working on.
*
* current_n -> Number of current entries in the memory table.
*
* entry_n -> Number of total possible entries in the memory table.
*
* log_n -> Number of entries to log to the file. Set to 0 to
* display all entries in the table.
*
* in_use_column_b -> Display the in-use numbers in a column.
*/
extern
void _dmalloc_table_log_info(mem_table_t *mem_table, const int current_n,
const int entry_n, const int log_n,
const int in_use_column_b);
/*<<<<<<<<<< This is end of the auto-generated output from fillproto. */
#endif /* ! __DMALLOC_TAB_H__ */
|