src/share/vm/prims/jvmtiImpl.cpp

changeset 2314
f95d63e2154a
parent 2277
5caa30ea147b
child 2361
09b4dd4f152b
     1.1 --- a/src/share/vm/prims/jvmtiImpl.cpp	Tue Nov 23 15:01:43 2010 -0500
     1.2 +++ b/src/share/vm/prims/jvmtiImpl.cpp	Tue Nov 23 13:22:55 2010 -0800
     1.3 @@ -1,5 +1,5 @@
     1.4  /*
     1.5 - * Copyright (c) 2003, 2007, Oracle and/or its affiliates. All rights reserved.
     1.6 + * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
     1.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     1.8   *
     1.9   * This code is free software; you can redistribute it and/or modify it
    1.10 @@ -22,8 +22,35 @@
    1.11   *
    1.12   */
    1.13  
    1.14 -# include "incls/_precompiled.incl"
    1.15 -# include "incls/_jvmtiImpl.cpp.incl"
    1.16 +#include "precompiled.hpp"
    1.17 +#include "classfile/systemDictionary.hpp"
    1.18 +#include "interpreter/interpreter.hpp"
    1.19 +#include "jvmtifiles/jvmtiEnv.hpp"
    1.20 +#include "memory/resourceArea.hpp"
    1.21 +#include "oops/instanceKlass.hpp"
    1.22 +#include "prims/jvmtiAgentThread.hpp"
    1.23 +#include "prims/jvmtiEventController.inline.hpp"
    1.24 +#include "prims/jvmtiImpl.hpp"
    1.25 +#include "prims/jvmtiRedefineClasses.hpp"
    1.26 +#include "runtime/deoptimization.hpp"
    1.27 +#include "runtime/handles.hpp"
    1.28 +#include "runtime/handles.inline.hpp"
    1.29 +#include "runtime/interfaceSupport.hpp"
    1.30 +#include "runtime/javaCalls.hpp"
    1.31 +#include "runtime/signature.hpp"
    1.32 +#include "runtime/vframe.hpp"
    1.33 +#include "runtime/vframe_hp.hpp"
    1.34 +#include "runtime/vm_operations.hpp"
    1.35 +#include "utilities/exceptions.hpp"
    1.36 +#ifdef TARGET_OS_FAMILY_linux
    1.37 +# include "thread_linux.inline.hpp"
    1.38 +#endif
    1.39 +#ifdef TARGET_OS_FAMILY_solaris
    1.40 +# include "thread_solaris.inline.hpp"
    1.41 +#endif
    1.42 +#ifdef TARGET_OS_FAMILY_windows
    1.43 +# include "thread_windows.inline.hpp"
    1.44 +#endif
    1.45  
    1.46  //
    1.47  // class JvmtiAgentThread

mercurial