comparison src/share/vm/prims/jni.cpp @ 12215:621eda7235d2

7164841: Improvements to the GC log file rotation Summary: made changes to easily identify current log file in rotation. Parameterize the input with %t for time replacement in file name. Reviewed-by: ccheung, tschatzl, tamao, zgu Contributed-by: yumin.qi@oracle.com
author minqi
date Mon, 16 Sep 2013 15:35:04 -0700
parents 21ffbaa691b5
children 06ae47d9d088
comparison
equal deleted inserted replaced
12212:4472884d8b37 12215:621eda7235d2
5035 #include "gc_interface/collectedHeap.hpp" 5035 #include "gc_interface/collectedHeap.hpp"
5036 #if INCLUDE_ALL_GCS 5036 #if INCLUDE_ALL_GCS
5037 #include "gc_implementation/g1/heapRegionRemSet.hpp" 5037 #include "gc_implementation/g1/heapRegionRemSet.hpp"
5038 #endif 5038 #endif
5039 #include "utilities/quickSort.hpp" 5039 #include "utilities/quickSort.hpp"
5040 #include "utilities/ostream.hpp"
5040 #if INCLUDE_VM_STRUCTS 5041 #if INCLUDE_VM_STRUCTS
5041 #include "runtime/vmStructs.hpp" 5042 #include "runtime/vmStructs.hpp"
5042 #endif 5043 #endif
5043 5044
5044 #define run_unit_test(unit_test_function_call) \ 5045 #define run_unit_test(unit_test_function_call) \
5058 run_unit_test(GCTimerAllTest::all()); 5059 run_unit_test(GCTimerAllTest::all());
5059 run_unit_test(arrayOopDesc::test_max_array_length()); 5060 run_unit_test(arrayOopDesc::test_max_array_length());
5060 run_unit_test(CollectedHeap::test_is_in()); 5061 run_unit_test(CollectedHeap::test_is_in());
5061 run_unit_test(QuickSort::test_quick_sort()); 5062 run_unit_test(QuickSort::test_quick_sort());
5062 run_unit_test(AltHashing::test_alt_hash()); 5063 run_unit_test(AltHashing::test_alt_hash());
5064 run_unit_test(test_loggc_filename());
5063 #if INCLUDE_VM_STRUCTS 5065 #if INCLUDE_VM_STRUCTS
5064 run_unit_test(VMStructs::test()); 5066 run_unit_test(VMStructs::test());
5065 #endif 5067 #endif
5066 #if INCLUDE_ALL_GCS 5068 #if INCLUDE_ALL_GCS
5067 run_unit_test(HeapRegionRemSet::test_prt()); 5069 run_unit_test(HeapRegionRemSet::test_prt());