src/share/vm/runtime/fprofiler.cpp

changeset 5614
9758d9f36299
parent 4936
aeaca88565e6
child 5617
491de79915eb
     1.1 --- a/src/share/vm/runtime/fprofiler.cpp	Thu Aug 29 21:46:09 2013 +0200
     1.2 +++ b/src/share/vm/runtime/fprofiler.cpp	Thu Aug 29 18:56:29 2013 -0400
     1.3 @@ -264,7 +264,7 @@
     1.4  
     1.5   public:
     1.6  
     1.7 -  void* operator new(size_t size, ThreadProfiler* tp);
     1.8 +  void* operator new(size_t size, ThreadProfiler* tp) throw();
     1.9    void  operator delete(void* p);
    1.10  
    1.11    ProfilerNode() {
    1.12 @@ -373,7 +373,7 @@
    1.13    }
    1.14  };
    1.15  
    1.16 -void* ProfilerNode::operator new(size_t size, ThreadProfiler* tp){
    1.17 +void* ProfilerNode::operator new(size_t size, ThreadProfiler* tp) throw() {
    1.18    void* result = (void*) tp->area_top;
    1.19    tp->area_top += size;
    1.20  

mercurial