comparison src/share/vm/memory/universe.inline.hpp @ 20804:7848fc12602b

Merge with jdk8u40-b25
author Gilles Duboscq <gilles.m.duboscq@oracle.com>
date Tue, 07 Apr 2015 14:58:49 +0200
parents fa6c442c59ee
children
comparison
equal deleted inserted replaced
20184:84105dcdb05b 20804:7848fc12602b
39 39
40 inline bool Universe::field_type_should_be_aligned(BasicType type) { 40 inline bool Universe::field_type_should_be_aligned(BasicType type) {
41 return type == T_DOUBLE || type == T_LONG; 41 return type == T_DOUBLE || type == T_LONG;
42 } 42 }
43 43
44 inline oop Universe::allocation_context_notification_obj() {
45 return _allocation_context_notification_obj;
46 }
47
48 inline void Universe::set_allocation_context_notification_obj(oop obj) {
49 _allocation_context_notification_obj = obj;
50 }
51
44 #endif // SHARE_VM_MEMORY_UNIVERSE_INLINE_HPP 52 #endif // SHARE_VM_MEMORY_UNIVERSE_INLINE_HPP