comparison src/share/vm/memory/referenceProcessor.cpp @ 1142:4ce7240d622c

6914300: ciEnv should export all well known classes Reviewed-by: kvn, twisti
author never
date Wed, 06 Jan 2010 14:22:39 -0800
parents 05f89f00a864
children 9b9c1ee9b3f6
comparison
equal deleted inserted replaced
1140:1f6d42899c3a 1142:4ce7240d622c
69 69
70 void ReferenceProcessor::init_statics() { 70 void ReferenceProcessor::init_statics() {
71 assert(_sentinelRef == NULL, "should be initialized precisely once"); 71 assert(_sentinelRef == NULL, "should be initialized precisely once");
72 EXCEPTION_MARK; 72 EXCEPTION_MARK;
73 _sentinelRef = instanceKlass::cast( 73 _sentinelRef = instanceKlass::cast(
74 SystemDictionary::reference_klass())-> 74 SystemDictionary::Reference_klass())->
75 allocate_permanent_instance(THREAD); 75 allocate_permanent_instance(THREAD);
76 76
77 // Initialize the master soft ref clock. 77 // Initialize the master soft ref clock.
78 java_lang_ref_SoftReference::set_clock(os::javaTimeMillis()); 78 java_lang_ref_SoftReference::set_clock(os::javaTimeMillis());
79 79