--- a/hotspot/src/share/vm/runtime/fprofiler.cpp Thu Aug 29 21:46:09 2013 +0200
+++ b/hotspot/src/share/vm/runtime/fprofiler.cpp Thu Aug 29 18:56:29 2013 -0400
@@ -264,7 +264,7 @@
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 @@
}
};
-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;