blob: 610da153836a24ae6ff254470d95c8f6df574ac3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
- Add tracing code for functions that records call count and total
time spent, as well as average time per call. This would implement
selective profiling.
- Make sure that if any constructors cause memory to be allocated,
that the memory is held by an auto_ptr until the constructor is
done; otherwise, an exception raised from within the constructor
will not call the destructor to free the memory.
- Using mmap for the binary reader; or determine if the performance is
even worth the maintenance headaches of that code altogether.
|