comparison src/share/vm/services/heapDumper.cpp @ 8001:db9981fd3124

8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS Summary: Rename INCLUDE_ALTERNATE_GCS to INCLUDE_ALL_GCS and replace SERIALGC with INCLUDE_ALL_GCS. Reviewed-by: coleenp, stefank
author jprovino
date Wed, 23 Jan 2013 13:02:39 -0500
parents 070d523b96a7
children 8391fdd36e1f
comparison
equal deleted inserted replaced
7619:46e60405583b 8001:db9981fd3124
38 #include "runtime/vmThread.hpp" 38 #include "runtime/vmThread.hpp"
39 #include "runtime/vm_operations.hpp" 39 #include "runtime/vm_operations.hpp"
40 #include "services/heapDumper.hpp" 40 #include "services/heapDumper.hpp"
41 #include "services/threadService.hpp" 41 #include "services/threadService.hpp"
42 #include "utilities/ostream.hpp" 42 #include "utilities/ostream.hpp"
43 #ifndef SERIALGC 43 #include "utilities/macros.hpp"
44 #if INCLUDE_ALL_GCS
44 #include "gc_implementation/parallelScavenge/parallelScavengeHeap.hpp" 45 #include "gc_implementation/parallelScavenge/parallelScavengeHeap.hpp"
45 #endif 46 #endif // INCLUDE_ALL_GCS
46 47
47 /* 48 /*
48 * HPROF binary format - description copied from: 49 * HPROF binary format - description copied from:
49 * src/share/demo/jvmti/hprof/hprof_io.c 50 * src/share/demo/jvmti/hprof/hprof_io.c
50 * 51 *