Browse Source

Added description for get_raw_blocks()

Ioannis Koutras 12 years ago
parent
commit
7e9e378c02
1 changed files with 4 additions and 0 deletions
  1. 4 0
      src/debug.c

+ 4 - 0
src/debug.c

@@ -32,6 +32,10 @@
 
 #include "trace.h"
 
+/** Gets the number of raw blocks that are currently managed by an allocator.
+ *
+ * @param allocator The pointer of the allocator's data structure.
+ */
 void get_raw_blocks(allocator_t *allocator) {
     int counter;
     raw_block_header_t *current_raw_block;