changeset 1240:985d267a3390

2008-12-03 Gary Benson <gbenson@redhat.com> * a/ports/hotspot/src/os_cpu/linux_zero/vm/os_linux_zero.hpp (os::is_allocatable): New method. * a/ports/hotspot/src/os_cpu/linux_zero/vm/os_linux_zero.cpp (os::is_allocatable): Likewise.
author Gary Benson <gbenson@redhat.com>
date Wed, 03 Dec 2008 04:50:04 -0500
parents 98f6e678b3ce
children 5e60b6dd0bf6
files ChangeLog ports/hotspot/src/os_cpu/linux_zero/vm/os_linux_zero.cpp ports/hotspot/src/os_cpu/linux_zero/vm/os_linux_zero.hpp
diffstat 3 files changed, 14 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Wed Dec 03 00:59:32 2008 +0100
+++ b/ChangeLog	Wed Dec 03 04:50:04 2008 -0500
@@ -1,3 +1,10 @@
+2008-12-03  Gary Benson  <gbenson@redhat.com>
+
+	* a/ports/hotspot/src/os_cpu/linux_zero/vm/os_linux_zero.hpp
+	(os::is_allocatable): New method.
+	* a/ports/hotspot/src/os_cpu/linux_zero/vm/os_linux_zero.cpp
+	(os::is_allocatable): Likewise.
+
 2008-12-03  Matthias Klose  <doko@ubuntu.com>
 
 	* patches/icedtea-format-warnings.patch: New.
--- a/ports/hotspot/src/os_cpu/linux_zero/vm/os_linux_zero.cpp	Wed Dec 03 00:59:32 2008 +0100
+++ b/ports/hotspot/src/os_cpu/linux_zero/vm/os_linux_zero.cpp	Wed Dec 03 04:50:04 2008 -0500
@@ -238,6 +238,11 @@
   Unimplemented();
 }
 
+bool os::is_allocatable(size_t bytes)
+{
+  Unimplemented();
+}
+
 ///////////////////////////////////////////////////////////////////////////////
 // thread stack
 
--- a/ports/hotspot/src/os_cpu/linux_zero/vm/os_linux_zero.hpp	Wed Dec 03 00:59:32 2008 +0100
+++ b/ports/hotspot/src/os_cpu/linux_zero/vm/os_linux_zero.hpp	Wed Dec 03 04:50:04 2008 -0500
@@ -25,6 +25,8 @@
 
   static void setup_fpu() {}
 
+  static bool is_allocatable(size_t bytes);
+
   // Used to register dynamic code cache area with the OS
   // Note: Currently only used in 64 bit Windows implementations
   static bool register_code_area(char *low, char *high) { return true; }