< prev index next >

src/os/linux/vm/os_perf_linux.cpp

Print this page




  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 #include "precompiled.hpp"
  26 #include "jvm.h"
  27 #include "memory/allocation.inline.hpp"
  28 #include "os_linux.inline.hpp"
  29 #include "runtime/os.hpp"
  30 #include "runtime/os_perf.hpp"
  31 
  32 #ifdef TARGET_ARCH_aarch32
  33 # include "vm_version_ext_aarch32.hpp"
  34 #endif



  35 #ifdef TARGET_ARCH_x86
  36 # include "vm_version_ext_x86.hpp"
  37 #endif
  38 #ifdef TARGET_ARCH_sparc
  39 # include "vm_version_ext_sparc.hpp"
  40 #endif
  41 #ifdef TARGET_ARCH_zero
  42 # include "vm_version_ext_zero.hpp"
  43 #endif
  44 #ifdef TARGET_ARCH_arm
  45 # include "vm_version_ext_arm.hpp"
  46 #endif
  47 #ifdef TARGET_ARCH_ppc
  48 # include "vm_version_ext_ppc.hpp"
  49 #endif
  50 
  51 #include <stdio.h>
  52 #include <stdarg.h>
  53 #include <unistd.h>
  54 #include <errno.h>




  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 #include "precompiled.hpp"
  26 #include "jvm.h"
  27 #include "memory/allocation.inline.hpp"
  28 #include "os_linux.inline.hpp"
  29 #include "runtime/os.hpp"
  30 #include "runtime/os_perf.hpp"
  31 
  32 #ifdef TARGET_ARCH_aarch32
  33 # include "vm_version_ext_aarch32.hpp"
  34 #endif
  35 #ifdef TARGET_ARCH_aarch64
  36 # include "vm_version_ext_aarch64.hpp"
  37 #endif
  38 #ifdef TARGET_ARCH_x86
  39 # include "vm_version_ext_x86.hpp"
  40 #endif
  41 #ifdef TARGET_ARCH_sparc
  42 # include "vm_version_ext_sparc.hpp"
  43 #endif
  44 #ifdef TARGET_ARCH_zero
  45 # include "vm_version_ext_zero.hpp"
  46 #endif
  47 #ifdef TARGET_ARCH_arm
  48 # include "vm_version_ext_arm.hpp"
  49 #endif
  50 #ifdef TARGET_ARCH_ppc
  51 # include "vm_version_ext_ppc.hpp"
  52 #endif
  53 
  54 #include <stdio.h>
  55 #include <stdarg.h>
  56 #include <unistd.h>
  57 #include <errno.h>


< prev index next >