equal
deleted
inserted
replaced
1 /* |
1 /* |
2 * Copyright (c) 1998, 2009, Oracle and/or its affiliates. All rights reserved. |
2 * Copyright (c) 1998, 2010, Oracle and/or its affiliates. All rights reserved. |
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 * |
4 * |
5 * This code is free software; you can redistribute it and/or modify it |
5 * This code is free software; you can redistribute it and/or modify it |
6 * under the terms of the GNU General Public License version 2 only, as |
6 * under the terms of the GNU General Public License version 2 only, as |
7 * published by the Free Software Foundation. |
7 * published by the Free Software Foundation. |
20 * or visit www.oracle.com if you need additional information or have any |
20 * or visit www.oracle.com if you need additional information or have any |
21 * questions. |
21 * questions. |
22 * |
22 * |
23 */ |
23 */ |
24 |
24 |
25 # include "incls/_precompiled.incl" |
25 #include "precompiled.hpp" |
26 # include "incls/_memprofiler.cpp.incl" |
26 #include "classfile/systemDictionary.hpp" |
|
27 #include "code/codeCache.hpp" |
|
28 #include "gc_interface/collectedHeap.inline.hpp" |
|
29 #include "interpreter/oopMapCache.hpp" |
|
30 #include "memory/generation.hpp" |
|
31 #include "memory/permGen.hpp" |
|
32 #include "memory/resourceArea.hpp" |
|
33 #include "runtime/handles.inline.hpp" |
|
34 #include "runtime/jniHandles.hpp" |
|
35 #include "runtime/memprofiler.hpp" |
|
36 #include "runtime/mutexLocker.hpp" |
|
37 #include "runtime/os.hpp" |
|
38 #include "runtime/task.hpp" |
|
39 #include "runtime/vmThread.hpp" |
|
40 #ifdef TARGET_OS_FAMILY_linux |
|
41 # include "thread_linux.inline.hpp" |
|
42 #endif |
|
43 #ifdef TARGET_OS_FAMILY_solaris |
|
44 # include "thread_solaris.inline.hpp" |
|
45 #endif |
|
46 #ifdef TARGET_OS_FAMILY_windows |
|
47 # include "thread_windows.inline.hpp" |
|
48 #endif |
27 |
49 |
28 #ifndef PRODUCT |
50 #ifndef PRODUCT |
29 |
51 |
30 // -------------------------------------------------------- |
52 // -------------------------------------------------------- |
31 // MemProfilerTask |
53 // MemProfilerTask |