tralloc

A C library that adds size information to memory allocations.
git clone git://src.gearsix.net/tralloctralloc.zip
Log | Files | Refs | Atom | README

TODO.txt (raw) (505B)


   1 LEGEND
   2 ------
   3 
   4 [x] = done; 
   5 [~] = in-progress; 
   6 [-] = won't do; 
   7 [ ] = not started;
   8 
   9 (!) = Priority; 
  10 (W) = Will do; 
  11 (S) = Should do; 
  12 (C) = Could do; 
  13 (N) = Won't do; 
  14 (?) = Needs investigating;
  15 
  16 TODO
  17 ----
  18 - [x] (N) Handle user errors (e.g. calling `htrack_allocsiz` on pointer not allocated by htrack).
  19   The stdlib doesn't do this for `free` when you call it on a pointer not malloc'd.
  20 - [ ] (S) Find a better way to handle errors that assert(...)
  21   This was a semi-temporary handler for development.