src/share/vm/memory/allocation.hpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File
*** old/src/share/vm/memory/allocation.hpp	Wed Jan 15 01:41:43 2014
--- new/src/share/vm/memory/allocation.hpp	Wed Jan 15 01:41:43 2014

*** 574,585 **** --- 574,585 ---- allocation_type get_allocation_type() const; bool allocated_on_stack() const { return get_allocation_type() == STACK_OR_EMBEDDED; } bool allocated_on_res_area() const { return get_allocation_type() == RESOURCE_AREA; } bool allocated_on_C_heap() const { return get_allocation_type() == C_HEAP; } bool allocated_on_arena() const { return get_allocation_type() == ARENA; } ! ResourceObj(); // default construtor ! ResourceObj(const ResourceObj& r); // default copy construtor ! ResourceObj(); // default constructor ! ResourceObj(const ResourceObj& r); // default copy constructor ResourceObj& operator=(const ResourceObj& r); // default copy assignment ~ResourceObj(); #endif // ASSERT public:

src/share/vm/memory/allocation.hpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File