changeset in /hg/icedtea: 2008-12-03 Gary Benson <gbenson at redh...

Gary Benson gbenson at redhat.com
Thu Dec 4 06:11:28 PST 2008


changeset 985d267a3390 in /hg/icedtea
details: http://icedtea.classpath.org/hg/icedtea?cmd=changeset;node=985d267a3390
description:
	2008-12-03  Gary Benson  <gbenson at 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.

diffstat:

3 files changed, 14 insertions(+)
ChangeLog                                                |    7 +++++++
ports/hotspot/src/os_cpu/linux_zero/vm/os_linux_zero.cpp |    5 +++++
ports/hotspot/src/os_cpu/linux_zero/vm/os_linux_zero.hpp |    2 ++

diffs (41 lines):

diff -r 98f6e678b3ce -r 985d267a3390 ChangeLog
--- 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  Matthias Klose  <doko at ubuntu
+2008-12-03  Gary Benson  <gbenson at 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 at ubuntu.com>
 
 	* patches/icedtea-format-warnings.patch: New.
diff -r 98f6e678b3ce -r 985d267a3390 ports/hotspot/src/os_cpu/linux_zero/vm/os_linux_zero.cpp
--- 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 @@ void os::Linux::set_fpu_control_word(int
   Unimplemented();
 }
 
+bool os::is_allocatable(size_t bytes)
+{
+  Unimplemented();
+}
+
 ///////////////////////////////////////////////////////////////////////////////
 // thread stack
 
diff -r 98f6e678b3ce -r 985d267a3390 ports/hotspot/src/os_cpu/linux_zero/vm/os_linux_zero.hpp
--- 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; }



More information about the distro-pkg-dev mailing list