瀏覽代碼

Count the number of realloc() calls

Ioannis Koutras 13 年之前
父節點
當前提交
6c88e0d3ce
共有 1 個文件被更改,包括 1 次插入0 次删除
  1. 1 0
      include/dmmlib/dmmstats.h

+ 1 - 0
include/dmmlib/dmmstats.h

@@ -39,6 +39,7 @@ typedef struct dmmstats_s {
     uint32_t live_objects; /**< Number of the currently used blocks. */
     uint32_t num_malloc; /**< Number of malloc()'s served. */
     uint32_t num_free; /**< Number of free()'s served. */
+    uint32_t num_realloc; /**< Number of realloc()'s served. */
 } dmmstats_t;
 
 #endif /* DMMSTATS_H */