changeset in /hg/icedtea6: 2008-12-17 Gary Benson <gbenson at red...
Gary Benson
gbenson at redhat.com
Wed Dec 17 04:54:06 PST 2008
changeset 515916374161 in /hg/icedtea6
details: http://icedtea.classpath.org/hg/icedtea6?cmd=changeset;node=515916374161
description:
2008-12-17 Gary Benson <gbenson at redhat.com>
* ports/hotspot/src/os_cpu/linux_zero/vm/os_linux_zero.cpp
(_Copy_conjoint_jshorts_atomic): Implemented.
diffstat:
2 files changed, 17 insertions(+), 1 deletion(-)
ChangeLog | 5 +++++
ports/hotspot/src/os_cpu/linux_zero/vm/os_linux_zero.cpp | 13 ++++++++++++-
diffs (35 lines):
diff -r b95615866532 -r 515916374161 ChangeLog
--- a/ChangeLog Wed Dec 17 10:03:26 2008 +0100
+++ b/ChangeLog Wed Dec 17 07:55:15 2008 -0500
@@ -1,3 +1,8 @@ 2008-12-17 Matthias Klose <doko at ubuntu
+2008-12-17 Gary Benson <gbenson at redhat.com>
+
+ * ports/hotspot/src/os_cpu/linux_zero/vm/os_linux_zero.cpp
+ (_Copy_conjoint_jshorts_atomic): Implemented.
+
2008-12-17 Matthias Klose <doko at ubuntu.com>
* patches/icedtea-zero.patch: Update for PARISC.
diff -r b95615866532 -r 515916374161 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 17 10:03:26 2008 +0100
+++ b/ports/hotspot/src/os_cpu/linux_zero/vm/os_linux_zero.cpp Wed Dec 17 07:55:15 2008 -0500
@@ -388,7 +388,18 @@ extern "C" {
void _Copy_conjoint_jshorts_atomic(jshort* from, jshort* to, size_t count)
{
- Unimplemented();
+ if (from > to) {
+ jshort *end = from + count;
+ while (from < end)
+ *(to++) = *(from++);
+ }
+ else if (from < to) {
+ jshort *end = from;
+ from += count - 1;
+ to += count - 1;
+ while (from >= end)
+ *(to--) = *(from--);
+ }
}
void _Copy_conjoint_jints_atomic(jint* from, jint* to, size_t count)
{
More information about the distro-pkg-dev
mailing list