hotspot/src/share/vm/memory/allocation.cpp
changeset 25468 5331df506290
parent 25351 7c198a690050
child 25946 1572c9f03fb9
equal deleted inserted replaced
25375:03eaa1688625 25468:5331df506290
    33 #include "runtime/os.hpp"
    33 #include "runtime/os.hpp"
    34 #include "runtime/task.hpp"
    34 #include "runtime/task.hpp"
    35 #include "runtime/threadCritical.hpp"
    35 #include "runtime/threadCritical.hpp"
    36 #include "services/memTracker.hpp"
    36 #include "services/memTracker.hpp"
    37 #include "utilities/ostream.hpp"
    37 #include "utilities/ostream.hpp"
    38 
       
    39 #ifdef TARGET_OS_FAMILY_linux
       
    40 # include "os_linux.inline.hpp"
       
    41 #endif
       
    42 #ifdef TARGET_OS_FAMILY_solaris
       
    43 # include "os_solaris.inline.hpp"
       
    44 #endif
       
    45 #ifdef TARGET_OS_FAMILY_windows
       
    46 # include "os_windows.inline.hpp"
       
    47 #endif
       
    48 #ifdef TARGET_OS_FAMILY_aix
       
    49 # include "os_aix.inline.hpp"
       
    50 #endif
       
    51 #ifdef TARGET_OS_FAMILY_bsd
       
    52 # include "os_bsd.inline.hpp"
       
    53 #endif
       
    54 
    38 
    55 void* StackObj::operator new(size_t size)     throw() { ShouldNotCallThis(); return 0; }
    39 void* StackObj::operator new(size_t size)     throw() { ShouldNotCallThis(); return 0; }
    56 void  StackObj::operator delete(void* p)              { ShouldNotCallThis(); }
    40 void  StackObj::operator delete(void* p)              { ShouldNotCallThis(); }
    57 void* StackObj::operator new [](size_t size)  throw() { ShouldNotCallThis(); return 0; }
    41 void* StackObj::operator new [](size_t size)  throw() { ShouldNotCallThis(); return 0; }
    58 void  StackObj::operator delete [](void* p)           { ShouldNotCallThis(); }
    42 void  StackObj::operator delete [](void* p)           { ShouldNotCallThis(); }