Skip to content

Commit

Permalink
Clean up more code associated with DEBUG_MEM* sections
Browse files Browse the repository at this point in the history
- see commit 4e07625 "Merge pull request #371 from DrylandEcology/feature_remove_debug_mem"

see #369
  • Loading branch information
dschlaep committed Oct 13, 2023
1 parent 4e07625 commit 12c88aa
Showing 1 changed file with 0 additions and 15 deletions.
15 changes: 0 additions & 15 deletions include/SW_datastructs.h
Original file line number Diff line number Diff line change
Expand Up @@ -1042,19 +1042,4 @@ typedef struct {
#endif
} SW_OUTPUT_POINTERS;

/* =================================================== */
/* Block info struct */
/* --------------------------------------------------- */

/* blockinfo is a structure that contains the memory log information
* for one allocated memory block. Every allocated memory block has
* a corresponding blockinfo structure in the memory log.
*/
typedef struct BLOCKINFO {
struct BLOCKINFO *pbiNext;
byte *pb; /* start of block */
size_t size; /* length of block */
flag fReferenced; /* Ever referenced? */
} blockinfo; /* Naming: bi, *pbi */

#endif // DATATYPES_H

0 comments on commit 12c88aa

Please sign in to comment.