/hg/icedtea6: Fix build for hs16. Add implementation of is_alloc...
enevill at icedtea.classpath.org
enevill at icedtea.classpath.org
Fri Jan 15 09:30:19 PST 2010
changeset be36bffde64d in /hg/icedtea6
details: http://icedtea.classpath.org/hg/icedtea6?cmd=changeset;node=be36bffde64d
author: Edward Nevill <ed at camswl.com>
date: Fri Jan 15 17:36:07 2010 +0000
Fix build for hs16. Add implementation of is_allocatable
diffstat:
2 files changed, 22 insertions(+), 1 deletion(-)
ChangeLog | 5 +++
ports/hotspot/src/os_cpu/linux_zero/vm/os_linux_zero.cpp | 18 +++++++++++++-
diffs (40 lines):
diff -r d9e57470d35d -r be36bffde64d ChangeLog
--- a/ChangeLog Fri Jan 15 15:36:43 2010 +0100
+++ b/ChangeLog Fri Jan 15 17:36:07 2010 +0000
@@ -1,3 +1,8 @@ 2010-01-15 Xerxes RÃ¥nby <xerxes at zafen
+2010-01-15 Edard Nevill <ed at camswl.com>
+
+ * ports/hotspot/src/os_cpu/linux_zero/vm/os_linux_zero.cpp
+ Implement is_allocatable to make build word with hs16
+
2010-01-15 Xerxes RÃ¥nby <xerxes at zafena.se>
PR icedtea/428:
diff -r d9e57470d35d -r be36bffde64d 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 Fri Jan 15 15:36:43 2010 +0100
+++ b/ports/hotspot/src/os_cpu/linux_zero/vm/os_linux_zero.cpp Fri Jan 15 17:36:07 2010 +0000
@@ -249,7 +249,23 @@ void os::Linux::set_fpu_control_word(int
}
bool os::is_allocatable(size_t bytes) {
- ShouldNotCallThis();
+#ifdef AMD64
+ // unused on amd64?
+ return true;
+#else
+
+ if (bytes < 2 * G) {
+ return true;
+ }
+
+ char* addr = reserve_memory(bytes, NULL);
+
+ if (addr != NULL) {
+ release_memory(addr, bytes);
+ }
+
+ return addr != NULL;
+#endif // AMD64
}
///////////////////////////////////////////////////////////////////////////////
More information about the distro-pkg-dev
mailing list