This commit is contained in:
Zhengyu Gu 2013-08-30 12:22:02 -04:00
commit 38fac8c706
51 changed files with 418 additions and 242 deletions

View file

@ -264,7 +264,7 @@ class ProfilerNode {
public:
void* operator new(size_t size, ThreadProfiler* tp);
void* operator new(size_t size, ThreadProfiler* tp) throw();
void operator delete(void* p);
ProfilerNode() {
@ -373,7 +373,7 @@ class ProfilerNode {
}
};
void* ProfilerNode::operator new(size_t size, ThreadProfiler* tp){
void* ProfilerNode::operator new(size_t size, ThreadProfiler* tp) throw() {
void* result = (void*) tp->area_top;
tp->area_top += size;