--- old/src/share/vm/prims/jvm.h 2010-11-16 18:18:13.000000000 +0100 +++ new/src/share/vm/prims/jvm.h 2010-11-16 18:18:13.000000000 +0100 @@ -1,5 +1,5 @@ /* - * Copyright (c) 1997, 2009, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -22,6 +22,22 @@ * */ +#ifndef SHARE_VM_PRIMS_JVM_H +#define SHARE_VM_PRIMS_JVM_H + +#include "prims/jni.h" +#include "runtime/reflectionCompat.hpp" +#include "utilities/globalDefinitions.hpp" +#ifdef TARGET_OS_FAMILY_linux +# include "jvm_linux.h" +#endif +#ifdef TARGET_OS_FAMILY_solaris +# include "jvm_solaris.h" +#endif +#ifdef TARGET_OS_FAMILY_windows +# include "jvm_windows.h" +#endif + #ifndef _JAVASOFT_JVM_H_ #define _JAVASOFT_JVM_H_ @@ -1704,3 +1720,5 @@ #endif /* __cplusplus */ #endif /* !_JAVASOFT_JVM_H_ */ + +#endif // SHARE_VM_PRIMS_JVM_H